You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
doppioTS
changed the title
Error retrieving term link in Taxoniomy module: cherry-satellite-utilit.php
Error retrieving term link in Taxonomy module: cherry-satellite-utilit.php
Jan 8, 2018
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
The text was updated successfully, but these errors were encountered: