网站学习备忘012——WordPress函数备忘

bloginfo('url');//获取网站链接
bloginfo('name');//获取网站标题
bloginfo('description');//获取网站副标题

//主页的主循环
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<?php endwhile; ?>
<?php endif; ?>

the_permalink();//获取文章的固定连接
the_title_attribute();//获取文章标题
the_content();//获取文章内容
the_author();//获取文章作者
comments_popup_link('No Comments', '1 Comment', '% Comments');//获取文章评论
edit_post_link('Edit');//获取编辑按钮
the_ID();//日志的ID
posts_nav_link();//获取上一页和下一页的链接
get_links_list();//获取友情链接
echo the_time('y-m-d'); //获取文章更新时间

你可能感兴趣的:(网站学习备忘012——WordPress函数备忘)