• Resolved vidhill

    (@vidhill)


    When I use the get_the_terms( ) function in Debug mode WordPress is throwing the following errors:

    Warning: Illegal string offset ‘orderby’ in /Volumes/RAID Set/Work_10/htdocs/eva-wordpress/wp-content/plugins/custom-taxonomy-sort/custom-taxonomy-sort.php on line 329

    Warning: Illegal string offset ‘orderby’ in /Volumes/RAID Set/Work_10/htdocs/eva-wordpress/wp-content/plugins/custom-taxonomy-sort/custom-taxonomy-sort.php on line 330

    http://wordpress.org/extend/plugins/custom-taxonomy-sort/

Viewing 1 replies (of 1 total)
  • Substitute lines 328-331 in the file custom-taxonomy-sort.php with the following. Hopefully this fix will make it into the next version of the plugin.

    if (
    	isset( $args['orderby'] ) &&
    	(
    		( $args['orderby'] == $this->orderby_parameter && $args['order'] == 'DESC' ) ||
    		( $args['orderby'] != $this->orderby_parameter && $this->get_sort_order() == 'DESC' )
    	)
    ) krsort( $ordered_terms );
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Custom Taxonomy Sort] Minor Bug Report: Interaction with get the terms()’ is closed to new replies.