$slug = get_page($page_id)->post_name;
if ($slug=="HOGEPAGE") {
$w_cat_id=get_category_by_slug('hogehoge')->term_id;
query_posts('post_type=post&cat='.$w_cat_id);
print "<h3>HOGE NEWS</h3>";
if (have_posts()) {
print "<ul>";
while(have_posts()){
the_post();
print '<li><a href="';
the_permalink();
print "\">";
the_title();
print " (".get_the_date('Y-m-d').")";
print "</a></li>";
}
print "</ul>";
}
}
0 件のコメント:
コメントを投稿