WORDPRESS開發(一)自定義頁面顯示分類目錄

第一步:
自定義一個頁面,如index.phpphp

第二步:
打開index.php文件,引用wp-blog-header.php文件css

require('wp-blog-header.php');

第三步
使用wp_list_categories提取分類ui

$args=array('title_li'=> '');
wp_list_categories($args);

‘title_li’=> 」 用於設置不顯示「分類目錄」標題,其它的使用默認。spa

顯示效果以下code

所有代碼blog

<style type="text/css">
    body{
        font-size:16px;
        font-family: 微軟雅黑;
    }
    .categories{
        list-style: none;
        padding:0;
    }
    .categories li{
        list-style:none;
    }
    .categories a{
        text-decoration: none;

    }
    .categories a:hover{
        text-decoration: underline;
    }
</style>
<ul class="categories">
<?php 
require('wp-blog-header.php');

$args=array('title_li'=> '');
wp_list_categories($args);
?>
</ul>
相關文章
相關標籤/搜索