如果要显示消息,请在functions.php
文件-
function se_236335_hide_content( $content ){
$pages = array( 8, 26, 35 ); // allowed page IDs
if( ! in_array( get_the_id(), $pages ) ){
return \'Message here..\';
}
return $content;
}
add_filter( \'the_content\', \'se_236335_hide_content\' );
如果需要页面重定向,请使用-
function se_236335_redirect(){
// allowed pages IDs
$p1 = 9;
$p2 = 11;
$p3 = 35;
// redirect location
$location = 9;
if( ! is_page( [ $p1, $p2, $p3 ] ) ) {
wp_redirect( get_permalink( $location ) );
exit();
}
}
add_action( \'wp\', \'se_236335_redirect\' );