Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #852335

    damador
    Participant

    noticed one thing – when i do site search for a term it return also “posts” from envira gallery – as the plugin is a very modified version of it it dont display pos galeries at all

    eg search returns from my site http://imgur.com/9fcBxe8

    return 404 http://imgur.com/1LWWtJA

    #852353

    damador
    Participant
    add_action( 'init', 'update_my_custom_type', 99 );
     
    /**
     * update_my_custom_type
     *
     * @author  Joe Sexton <joe@webtipblog.com>
     */
    function update_my_custom_type() {
    	global $wp_post_types;
     
    	if ( post_type_exists( 'my-custom-type' ) ) {
     
    		// exclude from search results
    		$wp_post_types['envira']->exclude_from_search = true;
    	}
    }

    that one worked 🙂 could we use toogle in theme as the post arnt gallereis at all

    #852497

    Darshana
    Moderator

    Glad you were able to figure it out 🙂