欢迎光临
我们一直在努力

在后台页面管理列表中隐藏特定的页面

建站超值云服务器,限时71元/月

对于WordPress多用户站点,隐藏一些比较重要的信息是很有必要的。有的时候,我们通过页面(Page)建立了一些很重要的功能页面,比如一些投稿页面、用户信息页面、前台布局页面等,我们当然不希望被其他用户看到这些页面。

在后台页面管理列表中隐藏特定的页面

你可以在主题的 functions.php 中添加下面的代码:

1
2
3
4
5
6
7
8
9
add_action( 'pre_get_posts' ,'exclude_this_page' );
function exclude_this_page( $query ) {
        if( !is_admin() )
                return $query;
        global $pagenow;
        if( 'edit.php' == $pagenow && ( get_query_var('post_type') && 'page' == get_query_var('post_type') ) )
                $query->set( 'post__not_in', array(23,28,30) ); // 页面的ID
        return $query;
}

add_action( ‘pre_get_posts’ ,’exclude_this_page’ ); function exclude_this_page( $query ) { if( !is_admin() ) return $query; global $pagenow; if( ‘edit.php’ == $pagenow && ( get_query_var(‘post_type’) && ‘page’ == get_query_var(‘post_type’) ) ) $query->set( ‘post__not_in’, array(23,28,30) ); // 页面的ID return $query; }

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在后台页面管理列表中隐藏特定的页面
分享到: 更多 (0)