我在中使用此代码functions.php
添加链接到帖子的按钮。
function new_excerpt_more($more) {
global $post;
return \'<a class="excerpt-readmore" href="\'. get_permalink($post->ID) . \'">Read more</a>\';
}
add_filter(\'excerpt_more\', \'new_excerpt_more\');
在中
front-page.php
我有
get_template_part(\'content-ctp\');
在那个文件里我有
$args = array(
\'post_type\' => \'radovi\'
);
$ctp = new WP_Query($args);
...
the_excerpt();
有没有办法不让“阅读更多”按钮仅用于此特定循环?我想我无法核实
if(!is_front_page())
在过滤器上,因为我在头版上还有两个循环,我需要那个按钮。有没有关于如何正确使用Wordpress方式的建议?