你需要改变the_content(\'Read more\');
到the_excerpt();
然后在你的函数中。php文件
add_filter(\'excerpt_more\', \'custom_read_more_link\');
function custom_read_more_link($more) {
return \'<a href="\'get_permalink().\'">Read More</a>\';
}
同时确保您正在拨打
wp_reset_query()
在while循环之后。这将实现您想要做的事情。
个人建议:请不要使用query_posts
, 而是创建的新实例WP_Query
班它采用的参数与query_posts
除了代码有点变化
$query = new WP_Query(\'post_type=front&p=47\');
while ($query->have_posts()) : $query->the_post();
这样做的好处是您不会修改wordpress全局
$wp_query
变量