Saturday, 15 August 2015

Wordpress search doesn't show custom post types and fields -



Wordpress search doesn't show custom post types and fields -

i have done research on topic , followed many tutorials nil seems work, wondering if help me out? want allow search form in wordpress site include custom post types , custom meta fields. appreciate if help me out. thanks!

archives.php shows content of type 'post', can alter include custom post types. add together filter functions.php file:

function namespace_add_custom_types( $query ) { if ( $query->is_search ) $query->set( 'post_type', array( 'post', 'your_custom_post_here') ); homecoming $query; } add_filter( 'pre_get_posts', 'namespace_add_custom_types' );

wordpress search wordpress-theming custom-post-type meta-boxes

No comments:

Post a Comment