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

来源:互联网 发布:java小游戏源代码下载 编辑:程序博客网 时间:2024/06/04 19:03
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();//日志的IDposts_nav_link();//获取上一页和下一页的链接get_links_list();//获取友情链接echo the_time('y-m-d'); //获取文章更新时间

原创粉丝点击