2016-04-28 12 views
0

特定のカテゴリのすべての投稿を一覧表示するショートコードが必要です。ワードプレスショートコードのカテゴリのすべての投稿を表示するには?

<ul>  
<?php 
$catPost = get_posts(get_cat_ID("31")); //change this 
foreach ($catPost as $post) : setup_postdata($post); ?> 
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> 
<?php endforeach;?> 
</ul> 

だから、どのようにすることができます:私は、ページテンプレート上で動作しますが、すぐに私はそれが動作しない(と私は本当にショート形式でそれを必要とする)ショートコードでそれを追加すると、このPHPコードを見つけ

それ?

答えて

0

それはあなたがその[posts_in_category cat=1]

のようにそれを呼び出すことができますこのような何か(あなたのfunctions.phpファイルに以下を追加)

function posts_in_category_func($atts) { 
    $category_id = $atts['cat']; 
    ?> 
     <ul>  
     <?php 
     $args = array('category' => $category_id, 'post_type' => 'post'); 
     $catPost = get_posts($args); 
     foreach ($catPost as $post) : setup_postdata($post); ?> 
     <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> 
     <?php endforeach;?> 
     </ul> 
    <? 

} 
add_shortcode('posts_in_category', 'posts_in_category_func'); 

する必要があります

関連する問題