Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'arts/elementor/rubenz_widget_portfolio_fullscreen_headings_slider/query_args', 'custom_rubenz_widget_portfolio_fullscreen_headings_slider_query_args' );
- function custom_rubenz_widget_portfolio_fullscreen_headings_slider_query_args( $args ) {
- $args = array(
- 'tax_query' => array(
- array(
- 'taxonomy' => 'arts_portfolio_category',
- 'field' => 'slug',
- 'terms' => array( 'design' ), // include only posts of the current categories (slugs)
- ),
- ),
- );
- return $args;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement