主循环的使用
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
// 在这里调用数据
<?php endwhile;?>
<?php else:?>
// 如果没有在这里提示一个信息
<?php endif;?>
bloginfo($show)
show(不填默认就是 'name')
(string)关于你的博客的详细信息。有效的参数值:
'name' - 站点的标题)
'description' - 站点的副标题
'url' -你的博客的网站地址的URL。
'rdf_url' -RDF/RSS 1.0 feed的URL。
'rss_url' -RSS 0.92 feed的URL。
'rss2_url' - RSS 2.0 feed的URL。
'atom_url' -Atom feed的URL。
'comments_rss2_url' - URL for comments RSS 2.0 feed.
'pingback_url' -Pingback (XML-RPC 文件)的URL。
'admin_email' - 管理员的电子邮件地址;设置在一般选项中。
'charset' -你的博客的字符编码;设置在阅读选项中。
'version' - 你的博客使用的WordPress版本。
'text_direction' - 从右到左,返回'rtl',从左到右返回'ltr'(默认)。
下面的,在WordPress1.5版本或者以后的版本中运行::
'html_type' - 你的博客的 "内容类型" 。
'wpurl' - WordPress安装的URL。
'template_url' - 使用的模板的URL。
'template_directory' - 模板的目录的URL。
'stylesheet_url' - 主要的CSS文件的URL。返回: http//example.com/wp-content/themes/ + your-active-theme-name(value from wp_options, "stylesheet" row) + "/style.css"(hardcoded in wp-includes/theme.php)
取消的参数
'stylesheet_directory' - 样式表目录的URL。 (2.3.1版本中这个已经取消了)
标签:feed,name,URL,标签,博客,url,wordpress,使用,RSS
From: https://www.cnblogs.com/hefeng2014/p/16974273.html