Technical: Custom Order

Technical: How to change default order on Taxonomy page to alphabetical order

This example is for how to change from Default order to alphabetical order to Low on Taxonomy pages- standard view: In taxonomy.php file Look for ‘meta_key’ => ‘prop_featured’, ‘orderby’ => ‘meta_value’, ‘order’ => ‘DESC’, Replace with //’meta_key’ => ‘prop_featured’, ‘orderby’ => ‘post_title’, ‘order’ => ‘ASC’, Make sure you write PHP, not copy/paste. So you don’t […]

Custom Order for Taxonomies / Categories

There is a plugin that has more sorting options and allows you to order in which order you wish: Custom Taxonomy Order NE – https://wordpress.org/plugins/custom-taxonomy-order-ne/ Short example about how to use this plugin Open TERM ORDER settings and select the taxonomy you wish to change order for Set your custom order and save This will apply […]

Technical: How to change agents order

How to change agents order on the agent list page Agents are listed by publish date. Most recent are listed first. Change publish date to change order. To change order in code and make agents go alphabetically, go to agents_list.php Instead of $args = array( ‘cache_results’ => false, ‘post_type’ => ‘estate_agent’, ‘paged’ => $paged, ‘posts_per_page’ […]