Created
October 26, 2016 11:09
-
-
Save Restoration/86a1ecae0aaa8370a48ca90cad4ddc85 to your computer and use it in GitHub Desktop.
WordPressでタクソノミーの情報を得る
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 | |
| //タクソノミーの情報を得る | |
| $taxonomy = $wp_query->get_queried_object(); | |
| var_dump($taxonomy); | |
| echo esc_html($taxonomy->name); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment