Skip to content

Instantly share code, notes, and snippets.

@stnc
Created August 12, 2024 02:17
Show Gist options
  • Save stnc/8561b7c79fc03eccfef378615e1899e8 to your computer and use it in GitHub Desktop.
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.
<?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