Ignore posts
-
Hello Im trying to ignore ‘post’ using code from your page https://www.nsp-code.com/ignore-sort-apply-for-certain-query-on-post-types-order/
add_filter('pto/posts_orderby/ignore', 'theme_pto_posts_orderby', 10, 3); function theme_pto_posts_orderby($ignore, $orderBy, $query) { if( (! is_array($query->query_vars['post_type']) && $query->query_vars['post_type'] == 'post') || (is_array($query->query_vars) && in_array('post', $query->query_vars))) $ignore = TRUE; return $ignore; }
This code unfortunatelly does not work, it ignores ordering for all post_types include portfolio. Can you please provide code that ignore post_type ‘post’ only?
Thank you very much.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Ignore posts’ is closed to new replies.