Skip to content

Instantly share code, notes, and snippets.

@rahularyan
Created December 12, 2017 05:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahularyan/d3f95e9697d45e286b6b14bb948103d4 to your computer and use it in GitHub Desktop.
Save rahularyan/d3f95e9697d45e286b6b14bb948103d4 to your computer and use it in GitHub Desktop.
<?php
/**
* Filters question CPT args.
*/
function my_ap_question_cpt_args( $args ) {
$args['exclude_from_search'] = false;
return $args;
}
add_filter( 'ap_question_cpt_args', 'my_ap_question_cpt_args' );
@Fred-FLQ
Copy link

Thanks Rahul!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment