wordpress笔记

1.获取所有分类目录:

$categories = get_categories();

2.获取某一分类的子类目录:

$sub_cats = get_categories("parent=".$category_id);

3.获取某一分类下的所有文章:

$c_posts = get_posts ( 'category=' . $category_id . '&numberposts=-1' );

4.获取所有一级分类:

$level1_cats = get_categories("parent=0");

5.静态首页的页面文件为模板php文件,默认模板由header.php content-page.php footer.php组成

文章页为single.php文件,由header.php content.php footer.php组成

你可能感兴趣的:(wordpress)