真的有必要回应这么多吗。如果正确使用打开和关闭php标记,可以使用echo消除这些标记。你为什么回音get_the_title()
当有内置功能时。the_title()
完全一样。
您可以使用WP_Query
创建特殊循环以从特定类别获取帖子。只要记住在开始新循环时重置循环。对于多个循环,还要检查The Loop. 一句忠告,本页作者使用query_posts
, 你绝对不能使用,使用WP_Query
对于摘录,您可以如下更改阅读更多链接
function new_excerpt_more( $more ) {
return \' <---the code of your button here--->\';
}
add_filter( \'excerpt_more\', \'new_excerpt_more\' );
最后,您的代码应该是这样的
<?php $my_query = new WP_Query(\'category_name=special_cat&posts_per_page=10\'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<section class="row"><div class="container-item">
<div class="item">
<div class="item-overlay">
<div class="item-content">
<div class="item-top-content">
<div class="item-top-content-inner">
<div class="item-product">
<div class="item-top-title">
<h2>
<?php the_title(); ?>
</h2><p class="subdescription">
<?php the_excerpt(); ?>
</p></div></div></div>
</div>
</div>
</div>
</div>
</div>
</section>
<?php endwhile; ?>
<?php rewind_posts(); ?>
<---Start your new loop here --->