Skip to content
Public Ticket #1148

Hide Certain Post in Other Layout (Grid) Homepage

Conversation thread

PenciDesign replied

Staff Reply

Hi,

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

Hisham replied

Customer Reply

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).

PenciDesign replied

Staff Reply

Hi,

You can save your posts in draft - and publish it when you donesmile.png

Best Regards,

PenciDesign

Hisham started the conversation

Conversation Start

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  ?

Want to join this conversation or access attachments? Sign in first.