Wordpress帮助 - 在页面的下半部分填充链接
我有一个简单的图像Carousel滑块我只是想能够点击图像并让链接相关的帖子显示在分隔符下方同一页面的底部任何人都有一个技巧或提示热点来完成这个?
上工作的内容答案 0 :(得分:1)
不确定我是否已完全理解这一点,但这里有 如果我明白你要做的事情,你可以尝试这样的事情:
<ul class="slides">
<?php // custom post query asuming you have a slider post section
query_posts(array(
//custom post type name
'post_type' => 'hp_slides',
//how many sslides to show
'showposts' => 6
)
);
// if slides available loop through
if (have_posts()) : while (have_posts()) : the_post(); ?>
<li>
<!-- ADD PERMALINK TO TITLE/LINK SECTION-->
<a href="<?php echo get_post_meta($post->ID, '_hps_custom_meta', true );?>">
<h2 class="slider-title ">
<?php the_title();?>
</h2>
</a>
<!-- ADD PERMALINK TO IMG-->
<a href="<?php echo get_post_meta($post->ID, '_hps_custom_meta', true );?>">
<?php echo bootstrapwp_autoset_featured_img();?>
</a>
</li>
<?php // end of post loop.
endwhile; endif; ?>