-1
我想運行一個循環,只查詢我的WordPress的特定類別。這是我有,但它顯示的「推薦」類別在wordpress中做一個特定的帖子類別顯示
<div class="row">
<?php if (is_page()) {
$cat=get_cat_ID($post->post_title); //use page title to get a category ID
$posts = get_posts ('cat=$cat&showposts=5');
if ($posts) {
foreach ($posts as $post):
setup_postdata($post); ?>
<div class="col-sm-12">
<div class="box" data-toggle="modal" data-target="#myModal1">
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
</div>
</div>
<?php endforeach;
}
}?>
</div>
請任何幫助將是巨大的在所有我的職務,而不是隻是我的帖子, 日Thnx