十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
首页分栏: A | B | C
10年积累的成都网站建设、成都做网站经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先建设网站后付款的网站建设流程,更有富阳免费网站建设让你可以放心的选择与我们合作。
对应分类ID: 3 | 4 | 5
写个函数:
function wpdit_get_news( $cat_ID = 0 ) {
if ( !empty( $cat_ID ) ) {
$category__in = absint( $cat_ID );
}
global $wp_query;
$args= array(
'post_type' = 'post',
'post_status' = 'publish',
'category__in' = (array)$category__in
);
$wp_query = new WP_Query( $args );
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_title();
echo "\n";
// to do loop
endwhile;
endif;
wp_reset_query();
}
在A栏写:
wpdit_get_news(3);
在B栏写:
wpdit_get_news(4);
在C栏写:
wpdit_get_news(5);
简单写了下,你参考参考。
首页分栏: A | B | C
对应分类ID: 3 | 4 | 5
写个函数:
function wpdit_get_news( $cat_ID = 0 ) {
if ( !empty( $cat_ID ) ) {
$category__in = absint( $cat_ID );
}
global $wp_query;
$args= array(
'post_type' = 'post',
'post_status' = 'publish',
'category__in' = (array)$category__in
);
$wp_query = new WP_Query( $args );
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_title();
echo "\n";
// to do loop
endwhile;
endif;
wp_reset_query();
}
在A栏写:
wpdit_get_news(3);
在B栏写:
wpdit_get_news(4);
在C栏写:
wpdit_get_news(5);
简单写了下,你参考参考。
如果你调用了多篇文章,想3栏显示,可以通过CSS代码来实现,比如:
下面是文章列表:
ul class="wanlimm_colom3"
liWordPress主题index.php制作/li
liWordPress主题index.php制作/li
liWordPress主题index.php制作/li
liWordPress主题index.php制作/li
liWordPress主题index.php制作/li
liWordPress主题index.php制作/li
/ul
如果首页宽度 width:960px;
下面是CSS:
.wanlimm_colom3 li { width:310px; line-height:26px; float:left; margin-left:10px; overflow:hidden; }
最重要的是 width 宽度是3分之1宽, 再就是 float:left; 浮动。
这样基本就实现了3排分栏展示了。