null

暂无访客记录

WordPress按分类显示文章

详情
评论
问答
赞助

您可以通过搜索或浏览分类列表来找到您期望下载的资源。随后点击资源介绍页右侧的下载链接按钮,依据提示信息进行操作即可。

大部分资源可积分免费下载,为了维持网站的运行小部分资源须付费才能下载。

本站提供的下载资源均为网络搜集,仅供个人学习和交流使用。对于版权问题,请用户自行判断并承担相应责任。

随着时间的推移,维持网站的运行需要支出高昂的服务器和带宽费用。为了能继续坚持免费做下去,如果觉得文章对您有用,希望您能动动发财的小手免费赞助狐狸,给狐狸加油打气!激励狐狸库继续创作下去!谢谢!

在互联网的浩瀚海洋中,我们的网站就像一座明亮的灯塔,为无数用户照亮前行的道路。它承载着知识的传递、梦想的交流,以及大家共同的回忆与期待。然而,运营和维护这样一个网站需要投入大量的心血与资金。

现在,您只需通过支付宝扫码领红包,就能轻松成为我们的赞助人。这不仅是一次简单的支持,更是您与网站共同成长的见证。操作简单,打开支付宝,扫描专属二维码,您的每一份心意都将化作网站发展的动力。

您的赞助,能让网站不断升级,提供更优质的服务,给大家带来更好的体验。让我们携手共进,让这座灯塔绽放更耀眼的光芒,照亮更多人的网络世界 。

下面是免费赞助的方法和流程

  1. 下面图一是本站的支付宝每日领红包二维码,使用支付宝扫描二维码后会自动显示红包金额,有任意小额金额红包。
  2. 点击“去使用”,再扫描第三张图的二维码进行付款即可。
  3. 上面扫到多少红包就输入多少金额,红包会自动抵扣金额,所以不需要额外费用。
  4. 如需赞助自定义金额请到【赞助狐狸】页面进行赞助。
  5. 这个扫码红包是每天都可以领的哦,支持同账号重复,每天花一分钟时间即可免费支持本站!
扫码红包 红包图 扫码支付
WordPress按分类显示文章-狐狸库
WordPress

可以自动将Wordpress站点的文章按分类显示在一个页面中,用作CMS主题布局很实用。

用下代码替换首页模板主循环,则按分类显示各分类最新的5篇文章。

<?php
    global $cat;
    $cats = get_categories(array(
        \'child_of\' => $cat,
        \'parent\' => $cat,
        \'hide_empty\' => 0
    ));
    $c = get_category($cat);
    foreach($cats as $the_cat){
        $posts = get_posts(array(
            \'category\' => $the_cat->cat_ID,
            \'numberposts\' => 5,
        ));
        if(!empty($posts)){
            echo \'
            <div class=\"item cat_item\">
                <div class=\"item_title\"><h2><a title=\"\'.$the_cat->name.\'\" href=\"\'.get_category_link($the_cat).\'\">\'.$the_cat->name.\'</a></h2></div>
                <ul class=\"box_list\">\';
                    foreach($posts as $post){
                        echo \'<li><span class=\"alignright\">\'.mysql2date(\'Y-m-d\', $post->post_date).\'</span>
                        <a title=\"\'.$post->post_title.\'\" href=\"\'.get_permalink($post->ID).\'\">\'.$post->post_title.\'</a></li>\';
                    }
                echo \'</ul>
            </div>\';
        }
    }
?>

用下代码替换分类归档模板主循环,则显示该分类下所有子分类的最新5篇文章,并按分类显示。如果当前分类下不存在子分类,则显示该分类的文章列表!

<?php
    global $cat;
    $cats = get_categories(array(
        \'child_of\' => $cat,
        \'parent\' => $cat,
        \'hide_empty\' => 0
    ));
    $c = get_category($cat);
    if(empty($cats)){
?>
<div class=\"item\">
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=\"post\">
        <h2><a title=\"<?php the_title(); ?>\" href=\"<?php the_permalink(); ?>\"><?php the_title(); ?></a></h2>
        <p><?php the_excerpt(); ?></p>
        <p><a href=\"<?php the_permalink(); ?>\">全文阅读>></a></p>
        <div class=\"meta\"><?php the_time(\'Y-m-d\'); ?> | 标签: <?php the_tags(\'\', \' , \', \'\'); ?></div>
    </div>
    <?php endwhile; ?>
    <?php else: ?>
        <div class=\"post\"><p>文章稍后更新</p></div>
    <?php endif; ?>
</div>
<div class=\"navigation\">
    <span class=\"alignleft\"><?php next_posts_link(\'&laquo; Older posts\') ?></span>
    <span class=\"alignright\"><?php previous_posts_link(\'Newer posts &raquo;\') ?></span>
</div>
<?php
}else{
    foreach($cats as $the_cat){
        $posts = get_posts(array(
            \'category\' => $the_cat->cat_ID,
            \'numberposts\' => 10,
        ));
        if(!empty($posts)){
            echo \'
            <div class=\"item cat_item\">
                <div class=\"item_title\"><h2><a title=\"\'.$the_cat->name.\'\" href=\"\'.get_category_link($the_cat).\'\">\'.$the_cat->name.\'</a></h2></div>
                <ul class=\"box_list\">\';
                    foreach($posts as $post){
                        echo \'<li><span class=\"alignright\">\'.mysql2date(\'Y-m-d\', $post->post_date).\'</span>
                        <a title=\"\'.$post->post_title.\'\" href=\"\'.get_permalink($post->ID).\'\">\'.$post->post_title.\'</a></li>\';
                    }
                echo \'</ul>
            </div>\';
        }
    }
}
?>

温馨提示:本文最后更新于2022/10/20 04:30:24。若文章内容或图片失效,请留言联系站长反馈!
© 版权声明
THE END
点赞0赞赏 分享
评论 抢沙发

请登录后发表评论

    请登录后查看评论内容