Wordpress - как получить значение, указанное пользователем в шорткоде? - PullRequest
0 голосов
/ 09 мая 2020

Я просто хочу отображать сообщения по числовому значению, заданному пользователем в параметре pocet [oblubene-clanky pocet=""]. Этот код не работает. Я пробовал и редактировал это решение , но безрезультатно. Итак, что не так?

function my_shortcode( $atts ) { ?>
    <div class="list_posts mt-5">

    <?php       
    $atts = shortcode_atts( array( 'pocet' => '' ), $atts, 'oblubene-clanky' );
    $args = array(
        'posts_per_page' => $atts['pocet'],
        'orderby' => 'date',
        'order' => 'DESC',
    );
    $query = new WP_Query( $args );

    if ( $query->have_posts() ) :
        while ( $query->have_posts() ) : $query->the_post(); 
            if ( isset( $atts['pocet'] ) ) : ?>

                <div class="pb-4 d-flex ">
                    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
                        <a href="<?php the_permalink(); ?>"><img src="<?php echo get_the_post_thumbnail_url( get_the_ID(), 'thumbnail' ); ?>" alt="<?php the_title(); ?>"></a>
                    </div>

                    <div class="pl-5">
                        <h6><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h6>
                        <p><?php the_excerpt(); ?></p>
                        <p class="small m-0"><?php echo get_the_date(); ?></p>
                    </div>          
                </div>

            <?php
            endif;
        endwhile;
        wp_reset_postdata();
    endif; ?>

    </div>

<?php
}
add_shortcode( 'oblubene-clanky', 'my_shortcode' );
...