Skip to content
Read For Learn
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP

Only show meta on one post type on search results page

You didn’t provide any of the output code for the search results output, so what I’ve provided below is a guess based on how things ‘should’ work – chances are things will look different in your theme so you’ll need to sort out how to apply the same logic.

In your search results template (content-search.php maybe?) you’ll have your search results pulled in and they’ll all be in a variable like so:

$search_query

That’ll be the results of the search query (may be named something different)…

So in your while() loop you’ll want to check get the ‘type’ for each result:

$type = $search_query->post->post_type;

Then before you output the HTML and data for the post meta, you’ll check to see if the type matches post, like so:

if( $type == 'post' ) :
  //your post meta output code
endif;

Putting the whole thing together… and remember, lots of guesswork in here:

<?php
    while( $search_query->have_posts() ) {
        $search_query->the_post();
        $type = $search_query->post->post_type;
        the_title();
        if( $type == 'post' ) :
            echo '<div class="jeg_post_meta">';
                echo 'By ' . the_author_posts_link() . 'on ' . the_time( 'F jS, Y' ) . 'in ' . the_category( ', ' ) . '.';
            echo '</div>';
        endif;
        echo '<div class="jeg_post_content">';
            the_excerpt();
        echo '</div>';
    }
?>

Just a reminder though that you shouldn’t be editing a third-party theme because your edits will get lost if/when it updates and you’ll have to start over. So you want to do this in a child theme where you’re overriding existing templates and content parts.

Related Posts:

  1. Sort Posts By Custom Field Date?
  2. Search posts by meta key in admin and front
  3. Add specific postmeta to search query
  4. How do I retrieve the slug of the current page?
  5. Most efficient way to get posts with postmeta
  6. Get posts by meta value
  7. Explanation of update_post_(meta/term)_cache
  8. How to extract data from a post meta serialized array?
  9. Advanced search form with filters for custom taxonomies and custom fields
  10. How to save an array with one metakey in postmeta?
  11. WordPress is stripping escape backslashes from JSON strings in post_meta
  12. How to make search include data from wp_postmeta?
  13. How can I get the post ID from a WP_Query loop?
  14. Check if Post Title exists, Insert post if doesn’t, Add Incremental # to Meta if does
  15. How to update_post_meta value as array
  16. Adding meta tag without plugin
  17. What’s the point of get_post_meta’s $single param?
  18. What is the different between an attachment in wp_posts and an attachment in wp_postmeta?
  19. How to edit a post meta data in a Gutenberg Block?
  20. Sanitizing integer input for update_post_meta
  21. post formats – how to switch meta boxes when changing format?
  22. Execute action after post is saved with all related post_meta records (data)
  23. Lack of composite indexes for meta tables
  24. WordPress database error: [Not unique table/alias: ‘wp_postmeta’]
  25. Get a single post by a unique meta value
  26. Admin Area Custom Type Search By Meta Fields Without Title & Content
  27. if get_post_meta is empty do something
  28. How we get_post_meta without post id
  29. How get post id from meta value
  30. What is the code to get the download link for a product in WooCommerce?
  31. Safe to delete blank postmeta?
  32. How do I Paginate Search Results for Custom Post Types?
  33. Dealing with Many Meta Values, 30+
  34. advanced custom fields update_field for field type: Taxonomy
  35. update_post_meta not saving when value is zero
  36. Content hooks vs User hooks
  37. Meta compare with date (stored as string) not working
  38. Trying to get custom post meta through Jetpack JSON API [closed]
  39. Search custom post type by meta data
  40. How to update/insert custom field(post meta) data with wordpress REST API?
  41. Restrict post edit/delete based on user ID and custom field
  42. Exclude top-level pages from search results
  43. get_post_meta returning empty string when data shows in the database
  44. publish_post action hook doesn’t give post_meta_data
  45. Remove WordPress.org Meta link
  46. Remove post meta keys
  47. How to access the post meta of a post that has just been published?
  48. Why time functions show invalid time zone when using ‘c’ time format?
  49. Why is get_post_meta returning an array when I specify it as single?
  50. How to update/delete array in post meta value?
  51. How to get all term meta for a taxonomy – getting term_meta for taxonomy
  52. Adding an assisting editor box to Post page
  53. delete unused postmeta
  54. Search through custom post type and custom fields takes 5 minutes
  55. Search everything (posts, pages, tags, cpt, meta)
  56. Should I sanitize custom post meta if it is going to be escaped later?
  57. Add post meta based on another post meta value before publish post
  58. How do I retrieve multi-dimensional arrays from the wp_postmeta table, & display on a website?
  59. Front-end update_post_meta snippet displays white screen?
  60. Query between two meta values?
  61. Save both current and new version of post meta
  62. Get Advanced Custom Fields values before saving [closed]
  63. Give extra post-meta to RSS feeds
  64. How to get meta value in wp_attachment_metadata
  65. WP REST API “rest_no_route” when trying to update meta
  66. Clean up output added via wp_head()
  67. List posts under meta_value heading
  68. How Do I Use WP_Query to Run This Database Query as Search Result?
  69. WordPress Admin Panel search posts with custom post meta values along with title
  70. Why am I getting an infinite loop with have_posts?
  71. get_post_meta – get a single value
  72. delete value 0 in post meta [closed]
  73. Can I safely delete a record, manually, in the wp postmeta table?
  74. How to store post meta in an array?
  75. What action hook updates post meta?
  76. Can’t translate the post meta data (Date) in another language
  77. get_post_meta / update_post_meta array
  78. adding a URL to a post meta
  79. How can I include meta box content when searching?
  80. Exclude a category from the filed under list
  81. Short of raw SQL, can I query for multiple attachment metadata that have a given array key?
  82. How do I access post meta data when publishing a new post in Gutenberg?
  83. update_post_meta() not working when used with WordPress action
  84. Using Advanced Custom Field (ACF) to insert meta description on each page
  85. Triple meta_key on custom SELECT query
  86. get_post_custom()
  87. Adding meta data to an attachment post
  88. update_post_meta not adding anything.(Nor add_post_meta)
  89. loop through all meta keys with get_post_meta
  90. Get posts by meta value with date
  91. How to add meta tag to wordpress posts filter?
  92. Are multiple values from get_post_meta guaranteed to be ordered?
  93. How do I make search results include ONLY pages, no posts?
  94. Identifying Importer Posts
  95. Get updated post meta on save_post action?
  96. Get post from meta_key and meta_value
  97. Add a post metadata if only the key and value does not exist
  98. get_post_meta returns bool(false)
  99. How metadata API works?
  100. How do I add advanced custom fields / meta fields to Elasticsearch? [closed]
Categories post-meta Tags post-meta, post-type, search
Google search console sitemap 404 error
Can I delete .git folder in a completed WP project?

Recommended Hostings

Cloudways: Realize Your Website's Potential With Flexible & Affordable Hosting. 24/7/365 Support, Managed Security, Automated Backups, and 24/7 Real-time Monitoring.

FastComet: Fast SSD Hosting, Free Migration, Hack-Free Security, 24/7 Super Fast Support, 45 Day Money Back Guarantee.

Recent Added Topics

  • Bug in translation system: load_theme_textdomain() returns true, files are available and accessible but the language defaults to english
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • Get the name of the template/*html file used
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
  • How to display the description of a custom post type in the dashboard?
  • Critical error on image display
  • Copying WP data and files into new install?
  • How to determine the DirectAdmin WordPress backup date?
  • How to get list of ALL tables in the database?
© 2026 Read For Learn
  • Database
    • Oracle
    • SQL
  • algorithm
  • asp.net
  • assembly
  • binary
  • c#
  • Git
  • hex
  • HTML
  • iOS
  • language angnostic
  • math
  • matlab
  • Tips & Trick
  • Tools
  • windows
  • C
  • C++
  • Java
  • javascript
  • Python
  • R
  • Java Script
  • jQuery
  • PHP
  • WordPress