Sorry for the long question title. I was attempting to be accurate.
我需要设计一个言语调问,将自动从某种习俗员额类别中抽出员额,查明每个员额的分类方式,然后按职类将员额排到一页,每个类别都列入自己的DIV。
例如,我有一个称为“Map数据”的习俗员额类型。 在这种习俗员额类型中,我有一个称为“工业”的超等级分类经济,在这个分类中,一些类别,即“Category #1”、“Category #2”,等等。 每个职类都有若干员额。
因此,询问应列出海关员额类别中的所有类别,然后得出这样的结果:
<div id="category-1">
<div class="post">This is a post in Category 1</div>
<div class="post">This is another post in Category 1</div>
</div>
<div id="category-2">
<div class="post">This is a post in Category 1</div>
<div class="post">This is another post in Category 1</div>
</div>
然而,我有以下与缺省性语言类系统合作的法律,要么需要重新制定,要么需要更新,以便它能够处理习惯员额类型及其税务问题。
<?php
$cat_args=array();
$categories=get_categories($cat_args);
foreach($categories as $category) {
$args=array(
category__in => array($category->term_id),
);
$posts=get_posts($args);
if ($posts) {
echo <div class="cat" id=" . $category->slug. " name=" . $category->name. "> ;
foreach($posts as $post) {
setup_postdata($post);
?>
<?php the_title();?>
<?php the_content();?>
<?php
} // foreach($posts
echo </div> ;
} // if ($posts
} // foreach($categories
?>
如果任何人能够向我提供最新的法典,以尝试,或提供一个工作榜样,那将受到非常赞赏。