你试下这段代码:
add_filter( 'posts_where_request', 'wpdit_custom_posts_where', 99 );
function wpdit_custom_posts_where( $where ) {
global $wpdb;
if ( is_home() ) {
$sticky_posts = get_option('sticky_posts');
if ( ! empty( $sticky_posts ) ) {
$where = ' AND {$wpdb->posts}ID IN ' $sticky_posts;
}
}
return $where;
}
原理是:判断是否为首页,是的话直接向posts_where_request这个hooks附加筛选条件,将ID限定在置顶文章里。
这个似乎要修改您的indexphp文件,把置顶里面的<php the_except();>改成<php the_content(); > 就可以实现置顶文章全文显示。
文章的More标签是在发表文章的时候 自己插入的。
{爱推吧} 有很多WordPress的小技巧,可以去看一下。《ituibarcom》
以上就是关于wordpress有没有什么插件或方法让首页只显示置顶文章全部的内容,包括:wordpress有没有什么插件或方法让首页只显示置顶文章、怎么弄才可以实现wordpress 首页置顶文章显示全文啊,文章more标签无效 使用的是wordpress 内置置顶、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)