Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if( ! function_exists( 'cobalt_filter_the_cobalt_post_data_args' ) ){
- /**
- *
- * Filter the post args.
- *
- * @param array $args
- * @return array
- */
- function cobalt_filter_the_cobalt_post_data_args( $args ) {
- if( basename( get_page_template() ) == 'template-blog-masonry.php' ){
- /**
- * @link https://codex.wordpress.org/Class_Reference/WP_Query
- *
- */
- $args['post_type'] = 'page';
- }
- return $args;
- }
- add_filter( 'cobalt_post_data_args' , 'cobalt_filter_the_cobalt_post_data_args', 10, 1 );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement