Advertisement
arie_cristianD

change single post template in custom post type

Oct 7th, 2024
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1.  
  2. add_filter( 'jnews_single_post_template', 'change_single_post_template', 99, 2 );
  3.  
  4.  
  5. function change_single_post_template( $template, $post_id ) {
  6.     if ( 'private-post' === get_post_type( $post_id ) ) { /* change with your custom post type */
  7.         $template = 3; /* change with number of single post template you want */
  8.     }
  9.     return $template;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement