Permalänk

Exkludera en posttyp i wordpress

Tjena, har lagt till denna sträng i Functions.php i barntemat, men det fungerar inte. Tanken är att alla FAQ-frågor inte längre ska vara sökbara. Är det någon som har lust att puffa mig i rätt riktning?

Tack / Karl

// Exclude Helpie FAQ from Search field

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( ‘helpie_faq’ ) ) {

// exclude from search results
$wp_post_types[‘helpie_faq’]->exclude_from_search = true;
}
}