Created
August 12, 2024 02:17
-
-
Save stnc/8561b7c79fc03eccfef378615e1899e8 to your computer and use it in GitHub Desktop.
On a single post page, it gives the categories to which the page is affiliated.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// $terms = wp_get_post_terms( get_the_id(), 'topics', array( 'orderby' => 'term_order' )); | |
$terms = wp_get_post_terms( get_the_id(), 'category', array( 'orderby' => 'term_order' )); | |
echo "<pre>"; | |
print_r( $terms); | |
get_permalink($id); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment