WordPress:Template Tags/bloginfo rss

来自站长百科
Xxf3325讨论 | 贡献2008年6月25日 (三) 11:51的版本 (新页面: == Description == Displays information about your blog, mostly gathered from the information you supply in Users > [[Word...)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航、​ 搜索

Description

Displays information about your blog, mostly gathered from the information you supply in Users > Your Profile and General Options from the WordPress WordPress:Administration Panels. This function is identical to bloginfo() except it strips any markup from the output for use in WordPress' syndication feeds.

Usage

%%% <?php bloginfo_rss('show'); ?> %%%

Example

Show Blog Title and Link

Displays blog name and url in title and link tags of RSS feed.

<title><?php bloginfo_rss('name'); ?></title>
<link><?php bloginfo_rss('url') ?></link>

Parameters

show
(string) Informational detail about your blog. Valid values:
  • 'name' - Weblog title; set in General Options. (Default)
  • 'description' - Tagline for your blog; set in General Options.
  • 'url' - URL for your blog's web site address.
  • 'rdf_url' - URL for RDF/RSS 1.0 feed.
  • 'rss_url' - URL for RSS 0.92 feed.
  • 'rss2_url' - URL for RSS 2.0 feed.
  • 'atom_url' - URL for Atom feed.
  • 'comments_rss2_url' - URL for comments RSS 2.0 feed.
  • 'pingback_url' - URL for Pingback (XML-RPC file).
  • 'admin_email' - Administrator's email address; set in General Options.
  • 'charset' - Character encoding for your blog; set in Reading Options.
  • 'version' - Version of WordPress your blog uses.
The following work in WordPress version 1.5 or after:
  • 'html_type' - "Content-type" for your blog.
  • 'wpurl' - URL for WordPress installation.
  • 'template_url' - URL for template in use.
  • 'template_directory' - URL for template's directory.
  • 'stylesheet_url' - URL for primary CSS file.
  • 'stylesheet_directory' - URL for stylesheet directory.

Related

模板:Tag General Tags

模板:Tag Footer