Disable posts from a certain category on Mobile homepage

Posted in: Newspaper
Post count: 20

Hi,
Is there anyway to avoid post from a certain category to appear at the tagDiv Mobile Theme homepage?

Post count: 22421

Hello,

Sorry but the mobile theme has no filters or controls over the content displayed on the front page. It will show a list of your latest articles. If you want to change this rule, you will have to alter the code: https://www.screencast.com/t/3UZZP3qE0Fos

Thank you!

Post count: 20

Thank you!

Can you help me with the code to disable 2 categories from appearing at the mobile front page?

Post count: 22421

Hi,

First find out what the category ID is of your category. Say for instance that it is 26

Now, inside of Newspaper\mobile\front-page.php you will find code around line 67:

$wp_query_args = array(
'ignore_sticky_posts' => 1,
'post_status' => 'publish',
'posts_per_page' => $posts_per_page,
'paged' => $paged,
);

Make sure to add:

'category__not_in' => array( 26 ),
to the end of the array so that it looks like this:

$wp_query_args = array(
'ignore_sticky_posts' => 1,
'post_status' => 'publish',
'posts_per_page' => $posts_per_page,
'paged' => $paged,
'category__not_in' => array( 26 ),
);

Thanks

Post count: 20

Thanks! It works great 😉

Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.