Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
themes

Customize Post Ordering in WordPress

Customize Post Ordering in WordPress — Featured

Customize Post Ordering in WordPress — a practical guide to Customize Post Ordering in WordPress themes tutorial with clear examples you can reuse in real projects.

Override the default post ordering behavior for a custom post type using WordPress filters and custom query logic.


add_filter('pto/posts_orderby/ignore', 'isabel_deafult_orderby_ignore_fun', 10, 3);
function isabel_deafult_orderby_ignore_fun($ignore, $orderBy, $query){
  if( ($query->query_vars['post_type'] == 'projects') )
          $ignore = TRUE;
  return $ignore;
}

Leave a reply

Your email address will not be published. Required fields are marked *