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
| <dl> | |
| <?php | |
| $news = get_posts( array( | |
| 'posts_per_page' => 20, | |
| 'order' => 'ASC', //ASC/*DESC | |
| 'orderby' => 'ID', //ID/author/title/date/modified/parent/rand/comment_count/menu_order/meta_value/meta_value_num | |
| 'category_name' => 'slug', | |
| 'tag' => 'slug' | |
| 'post_type' => 'slug', | |
| 'taxonomy' => 'slug', |
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 | |
| //HTMLの自動整形を解除 | |
| function set_allowedposttags($content){ | |
| global $allowedposttags; | |
| $allowedposttags['dl'] = array( | |
| 'class' => array(), | |
| 'id' => array() | |
| ); | |
| $allowedposttags['dt'] = array( | |
| 'class' => array(), |
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
| <table> | |
| <tr> | |
| <th>日付</th> | |
| <th>タイトル</th> | |
| </tr> | |
| <?php | |
| $postcount = 1; //奇数偶数をカウント | |
| $news = get_posts( array( | |
| 'post_type' => 'type', | |
| 'posts_per_page' => -1, |
NewerOlder