Last active
December 16, 2015 21:29
-
-
Save a2ikm/5500239 to your computer and use it in GitHub Desktop.
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 | |
| $cat_all = get_terms( "category", "fields=all&get=all" ); | |
| foreach($cat_all as $value): | |
| if($value->term_id === 1) { continue; } // id=1のカテゴリをスキップ | |
| if($value->name === "ナマハゲ") { continue; } // name=ナマハゲのカテゴリをスキップ | |
| ?> | |
| <p><a href="<?php echo get_category_link($value->term_id); ?>"><?php echo $value->name;?></a></p> | |
| <?php endforeach; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment