Advertisement
phpface

Untitled

Jun 15th, 2022
1,243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. /**
  2.  *
  3.  * Add custom post types to data source
  4.  *
  5.  * @param array $post_types
  6.  *
  7.  */
  8. add_filter( 'streamtube/core/widget/posts/post_types', function( $post_types ){
  9.  
  10.     // Define your own custom post type
  11.     $custom_post_type = array(
  12.         'custom_post_type_slug'    => esc_html__( 'Post Type Name', 'streamtube-child' )
  13.     );
  14.  
  15.     return array_merge( $post_types, $custom_post_type );
  16.  
  17. }, 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement