admin管理员组文章数量:1122826
i have created a Search template in elementor pro, i'm using Archive Posts widget to show the result. but the problem is i want to include the CPT in the result.
i tried the pre get post function, but its not working, it only shows the posts
function vikram_include_custom_post_types_in_search_results( $query ) {
if ( $query->is_main_query() && $query->is_search() && ! is_admin() ) {
$query->set( 'post_type', array( 'service', 'specialty' ) );
}
}
add_action( 'pre_get_posts', 'vikram_include_custom_post_types_in_search_results', 10, 1 );
plz guide me how to do this
thanks in advance
本文标签: pluginsHow to add CPT in Elementor pro search template
版权声明:本文标题:plugins - How to add CPT in Elementor pro search template 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736310219a1934296.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论