Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9183837
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:54:05+00:00 2026-06-17T18:54:05+00:00

I only want the latest post from the category to be excluded from the

  • 0

I only want the latest post from the category to be excluded from the front page. All others from the same category should be displayed. I can’t seem to figure this one out. Here’s what I got so far but it excludes the entire category from the front page.

function exclude_category2($query) { 
if ( $query->is_home ) { 
$query->set('cat', '-1,-4,-36'); 
} 
return $query; 
} 
add_filter('pre_get_posts', 'exclude_category2'); 

Thanks for the help!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T18:54:07+00:00Added an answer on June 17, 2026 at 6:54 pm

    You could use some hook like template_redirect to remove the top element from the global $posts array using array_shift like gok suggests (somewhat, he didn’t really say how to do it). In that case it would look like this

    add_action( 'template_redirect', function() {
        global $posts;
        array_shift( $posts );
    });
    

    But I think a more elegant approach would be this

    add_action( 'loop_start', function( $args ) {
        $args[0]->next_post();
    });
    

    If you put this in functions.php, at the beginning of the WordPress loop, it will automatically go to the next post which means it will skip the first post always.

    If you want to do this only on certain pages, use the relevant template tag like is_home() inside the function. if ( is_home() ) $args[0]->next_post();.

    If you are not using PHP version >= 5.3 you will have to give the function a name, since lower versions of PHP do not support anonymous functions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I displayed all the post from all the post type in the page. Now
Is it possible to filter out only the shortcode from the post and then
I want to build a page that would display all comments , regardless of
As i have tried getting the post from a public facebook page, by passing
So i want to create: select * from Post where Post.is_chosen = true order_by
I only want to show my title attribute in some cases. I don't want
I only want to calculate an AVG of values if two or more non-zero
I only want log4net to keep let's say 10 days-worth of log files as
I only want this function to run if .toolbar li does not have the
I only want a simple Splash Screen Example. Get the Code, Insert my picture,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.