Sort leagues, positions and season by sp_order

This commit is contained in:
Nabil Kadimi
2018-05-25 15:09:28 +00:00
committed by GitHub
parent 33601252a6
commit 16319f6415

View File

@@ -5,7 +5,7 @@
* The SportsPress custom post class handles individual post data. * The SportsPress custom post class handles individual post data.
* *
* @class SP_Custom_Post * @class SP_Custom_Post
* @version 0.8 * @version 2.6.5
* @package SportsPress/Abstracts * @package SportsPress/Abstracts
* @category Abstract Class * @category Abstract Class
* @author ThemeBoy * @author ThemeBoy
@@ -71,4 +71,21 @@ abstract class SP_Custom_Post {
public function get_post_data() { public function get_post_data() {
return $this->post; return $this->post;
} }
/**
* Get terms sorted by order.
*
* @access public
* @param string $taxonomy The taxonomy.
* @return array|false|WP_Error See `get_the_terms()`
*/
public function get_terms_sorted_by_sp_order( $taxonomy ) {
$terms = get_the_terms( $this->ID, $taxonomy );
if ( $terms ) {
usort( $terms, function( $a, $b ) {
return get_term_meta( $a->term_id, 'sp_order', true ) > get_term_meta( $b->term_id, 'sp_order', true );
} );
}
return $terms;
}
} }