Comments Hisham started the conversationDecember 19, 2017 at 5:05pmHi,My rival keep copying my post. Is there any way that I can hide latest or certain post from appearing in the other layout (Grid) homepage ? 2,700PenciDesign repliedDecember 20, 2017 at 2:12amHi,You can save your posts in draft - and publish it when you doneBest Regards,PenciDesignHisham repliedDecember 20, 2017 at 4:21amHi,That's not what I meant. I know how to save a draft. What I meant is hiding newly published post from appearing in the homepage (other layout-grid). 2,700PenciDesign repliedDecember 20, 2017 at 4:39amHi,Please try add more this code at the end of functions.php file like on this image: /** * Exclude some first posts to latest posts on the homepage. * * @since 1.0 * @return void */if ( ! function_exists( 'penci_exclude_latest_posts_homepage' ) ) {function penci_exclude_latest_posts_homepage( $query ) {if ( $query->is_home() && $query->is_main_query() ) {$query->set( 'offset', 3 );}} add_action('pre_get_posts','penci_exclude_latest_posts_homepage');} Change number 3 on the above code to number latest posts you want to hide on the homepage.Best Regards,PenciDesign Sign in to reply ...
Hi,
My rival keep copying my post. Is there any way that I can hide latest or certain post from appearing in the other layout (Grid) homepage ?
Hi,
You can save your posts in draft - and publish it when you done
Best Regards,
PenciDesign
Hi,
That's not what I meant. I know how to save a draft. What I meant is hiding newly published post from appearing in the homepage (other layout-grid).
Hi,
Please try add more this code at the end of functions.php file like on this image:
Change number 3 on the above code to number latest posts you want to hide on the homepage.
Best Regards,
PenciDesign