Squelette d’un thème WordPress

samedi 27 avril 2013Par : CyrIng

index.php


if(have_posts())
{
    while( have_posts() )
    {
        the_post();
        the_title();
        the_date();
        comments_number();
        the_content();
        $categories_list = get_the_category_list();
        if($categories_list)
            echo $categories_list;
        $tag_list = get_the_tag_list();
        if($tag_list)
            echo $tag_list;
    }
}