Open
Description
Modify code on cherry-satellite-utilit.php
Modify is necessary to use it in module Taxonomy of PowerBuider: in module is possible to select various type of taxonomy but his work only with post 'category': module display correctly image and name of taxonimy but link is broken.
This is actual code
public function get_term_permalink( $id = 0 ) {
return esc_url( get_category_link( $id ) );
}
And this is correction
public function get_term_permalink( $id = 0 ) {
//return esc_url( get_category_link( $id ) ); // this return link only on 'category' taxonomy
return esc_url( get_term_link( $id ) ); // this returrn link on all taxonomy
}
This work with all taxonomy
Metadata
Assignees
Labels
No labels
Activity