Advertisement
fahimmurshed

Enable "Related Post" for a CPT

Jan 22nd, 2023
1,032
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | Source Code | 0 0
  1. add_filter( 'astra_related_posts_supported_post_types', 'ast_add_related_posts_cpt_support' );
  2.  
  3. function ast_add_related_posts_cpt_support( $post_types ) {
  4.     $post_types = array(
  5.         'post',
  6.         'my-cpt-1'
  7.     );
  8.     return $post_types;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement