这是代码。无论短代码使用哪个类别名称,它都只显示一个图像。
<?php
// Create Slider
function wptuts_slider_template($category_name) {
global $post;
// Query Arguments
$args = array(
'post_type' => 'slides',
'order' => 'ASC',
'category_name' => $category_name
);
// The Query
$the_query = new WP_Query( $args );
// Check if the Query returns any posts
if ( $the_query->have_posts() ) {
// Start the Slider ?>
<ul class="slides <?php wp_title(); ?> <?php echo $category_name ?>" data-options="animation:fade;
pause_on_hover:true;
resume_on_mouseout: true;
timer_speed:3000;
animation_speed:500;
navigation_arrows:true;
bullets:true;
slide_number:false;
next_on_click:true;
timer: true;" data-orbit>
<?php
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<li>
<?php // Check if there's a Slide URL given and if so let's a link to it
if ( get_post_meta( get_the_id(), 'wptuts_slideurl', true) != '' ) { ?>
<a href="<?php echo esc_url( get_post_meta( get_the_id(), 'wptuts_slideurl', true ) ); ?>">
<?php }
// The Slide's Image
echo get_the_post_thumbnail();
// Close off the Slide's Link if there is one
if ( get_post_meta( get_the_id(), 'wptuts_slideurl', true) != '' ) { ?>
</a>
<?php } ?>
</li>
<?php endwhile; ?>
</ul><!-- .slides -->
<?php }
// Reset Post Data
wp_reset_postdata();
}
// Slider Shortcode
function wptuts_slider_shortcode($atts) {
extract(shortcode_atts(array(
"category_name" => 'other',
), $atts));
ob_start();
wptuts_slider_template($category_name);
$slider = ob_get_clean();
return $slider;
}
add_shortcode( 'slider', 'wptuts_slider_shortcode' );
是什么导致这不起作用?我在循环类中回显了category_name,它正确输出变量。请帮忙!
更新* [slider category_name =“main”]是短代码示例。
答案 0 :(得分:0)
你在短代码函数中提取到$ atts ['other']。你应该更新
wptuts_slider_template($category_name);
到
wptuts_slider_template($atts['other']);
在同一个函数中正确传递数据。