• Kashif

    (@mkashifmunirlivecom)


    hello
    i am working for a wordpress theme. i have a problem in search. when i try to search for ant thing the result come from only posts. nothing result from pages.
    <a href="http://zippsweightloss.com/">http://zippsweightloss.com/</a>
    can any one tell me how to solve this problem

Viewing 1 replies (of 1 total)
  • Thread Starter Kashif

    (@mkashifmunirlivecom)

    function filter_search($query) {
        if ($query->is_search) {
        $query->set('post_type', array('post', 'page'));
        };
        return $query;
    };
    add_filter('pre_get_posts', 'filter_search');

    Here Is the Solution. Paste this code in functions.php

    Thank you Guys

Viewing 1 replies (of 1 total)
  • The topic ‘WordPress Search’ is closed to new replies.