站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
WordPress日志元数据
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
<span style="border:1px solid #000; text-align:center; float:right; padding:6px;"><strong>导航:</strong> [[WordPress进阶使用|上一页]] | {{Template:WordPress导航}}</span> <div style="clear:both;"></div> '''日志元数据'''是我们提供给读者的、关于每篇日志的“管理”数据。日志元数据通常包括日志作者、日志发表时间以及作者对日志的分类。这篇文章主要向大家介绍一些不同的方法,帮助大家改变自己的主题设计,让日志元数据能够以自己希望的方式显示在网页上。 很多时候,日志元数据会紧随日志出现,但有些主题将日志元数据显示在日志最上方,还有些主题在侧边栏的上方或下方显示日志元数据,有些主题甚至在页脚部分显示日志元数据。总之,日志元数据可以以不同方式出现在页面的不同位置上。 ==默认用法== WordPress默认主题将日志元数据基本信息以及日志标签放置在日志下方、读者评论上方的文本框中。下面是一组简单的日志元数据代码: <small>This entry was posted on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?> and is filed under <?php the_category(', ') ?>. You can follow any responses to this entry through the <?php comments_rss_link('RSS 2.0'); ?> feed.</small> 代码在网页上的显示结果如下: This entry was posted on Monday, February 12, 2003 at 11:32 and is filed under[http://codex.wordpress.org/Post_Meta_Data_Section#Default_Usage WordPress Lessons], [http://codex.wordpress.org/Post_Meta_Data_Section#Default_Usage Things to] Know. You can follow any responses to this entry though the[http://codex.wordpress.org/Post_Meta_Data_Section#Default_Usage RSS 2.0 feed]. 该日志元数据用到了三个模板标签。其中 [http://codex.wordpress.org/Template_Tags/the_time the_time()] 标签被使用两次,分别用以显示不同结果。剩下两个标签从数据库中获取该日志的类别信息和以及RSS订阅链接地址。 the_time()模板标签接收多个参数,我们可以利用不同参数从数据库中抽取当前日志的时间和日期数据。上面的代码第一次使用the_time()模板标签时,标签的参数 l, F jS, Y将日志的时间格式显示为<EM>星期,月,日,年</EM>。第二次,标签没有使用参数,因此只返回了日志的发表时间。对此文章的“更改时间与日期”部分有详细介绍。 模板标签 [http://www.wordpress.la/codex-%E6%A8%A1%E6%9D%BF%E6%A0%87%E7%AD%BE-the_category%28%29.html the_category]显示当前日志所属类别。该模板标签的显示结果可以是不同文本,也可以是图形或图形之间的符号,甚至可以用插件来显示分类图形。在上面的例子中,各分类之间[http://codex.wordpress.org/Separating_Categories 用逗号隔开]。 最后使用的模板标签是[http://codex.wordpress.org/Template_Tags/comments_rss_link comments_rss_link],该标签利用参数RSS 2.0来识别订阅类型。我们也可以[http://codex.wordpress.org/Customizing_Feeds 自定义feed标签],改变网页显示订阅链接的方式,甚至可以显示订阅图标而不是简单的订阅字样。 ==更改日志元数据信息== 下面我们要逐步重新组织日志元数据。首先要改变的是数据信息而不是模板标签。毕竟这是我们的网站,我们希望并且有权让所有信息按我们期望的方式显示。下面的例子中所展示的日志元数据更具有对话色彩: <small>I slaved away at the computer on <?php the_time('l, F jS, Y') ?> at the ridiculous time of <?php the_time() ?> when I could have been doing something much more productive. I slapped this thing into the <?php the_category(' and ') ?> categories, just to make you think I have some organizational skills. If you can really be bothered, you can keep track of what people have to say about my silly writings through the <?php comments_rss_link('RSS 2.0'); ?> feed, but I wouldn't bother. No one else who reads this babble has anything worthwhile to say.</small> 在网页上的显示结果是: I slaved away at the computer on Monday, February 12, 2003 at the ridiculous time of 11:32. when I could have been doing something much more productive. I slapped this thing into the [http://codex.wordpress.org/Post_Meta_Data_Section#Changing_the_Text WordPress Lessons] and [http://codex.wordpress.org/Post_Meta_Data_Section#Changing_the_Text Things to Know]. categories, just to make you think I have some organizational skills. If you can really be bothered, you can keep track of what people have to say about my silly writings through the [http://codex.wordpress.org/Post_Meta_Data_Section#Changing_the_Text RSS 2.0] feed, but I wouldn't bother. No one else who reads this babble has anything worthwhile to say. 跟默认用法中的结果有些差别,看出来了吗? 在the_category()模板标签中,设置当前日志的类别列表分隔符的参数,已经从逗号(,)变成单词"and"。单词比逗号更符合上面这段话的情境。 我们也可以选择用短小精炼的语言来描述日志元数据: POSTED: <?php the_time('m/j/y g:i A') ?><br /> FILED AS: <?php the_category(', ') ?><br /> COMMENTS FEED: <?php comments_rss_link('RSS 2.0'); ?> 于是日志元数据变成下面这样: POSTED: 05/12/04 9:35 AM FILED AS:[http://codex.wordpress.org/Post_Meta_Data_Section#Changing_the_Text News],[http://codex.wordpress.org/Post_Meta_Data_Section#Changing_the_Text Answers] COMMENTS FEED:[http://codex.wordpress.org/Post_Meta_Data_Section#Changing_the_Text RSS 2.0] ==更改时间和日期== 更改日志元数据中时间和日期的方法很多,我们可以从中选择适合自己网站或是适合本地文化习俗的日期显示方式。例如在世界的大多数地方,日期显示方式不是月、日、年而是日、月、年。我们可以在日志元数据中更改模板标签 the_time(),设置参数使之显示“Monday, 21 February 2005”: <?php the_time('1, jS F Y') ?> 也有一些[http://codex.wordpress.org/Glossary#Plugin 插件]可以生成日志的最后修改时间,从而为日志元数据添加更多信息。[http://guff.szub.net/2005/02/22/post-updated/ Kaf Oseo's Post Updated]与[http://dev.wp-plugins.org/browser/last-modified/trunk/ Nick Momrik's Last Modified]就是两个可以提供日志最后修改时间的插件。在下面的例子中,我们利用PHP标签,通过不同方式来[http://www.wordpress.la/codex-%E8%AE%BE%E7%BD%AE%E6%97%A5%E6%9C%9F%E5%92%8C%E6%97%B6%E9%97%B4%E6%A0%BC%E5%BC%8F.html 设置时间格式], 并将Nick Momrik的插件添加到mdv_last_modified(): <div class="postmetadata">This post was written on what I think was a <?php the_time('l'); ?>, but I know it was the <?php the_time('jS'); ?> day in the month of <?php the_time('F'); ?> in the year of <?php the_time('Y'); ?>, though I messed around with this on the <?php mdv_last_modified('dS'); ?> day of <?php mdv_last_modified('F'); ?> in <?php mdv_last_modified('Y'); ?>, a not-so-busy <?php mdv_last_modified('l'); ?> when I had nothing better to do.</p></div> 显示在网页上的结果是: This post was written on what I think was a Tuesday, but I know it was the 15th day in the month of February in the year of 2004, though I messed around with this on the 10th day of August in 2004, a not-so-busy Thursday when I had nothing better to do. ==添加模板标签== 到目前为止我们只认识了三个可以添加到日志元数据中的模板标签。实际上很多标签都可以添加到日志元数据中。我们可以用[http://www.wordpress.la/codex-%E6%A8%A1%E6%9D%BF%E6%A0%87%E7%AD%BE-the_title%28%29.html the_title]来获取日志标题,用[http://codex.wordpress.org/Template_Tags/the_author the_author()]获取日志作者姓名,也可以用[http://codex.wordpress.org/Template_Tags/the_author_email the_author_email()]来获取日志作者的Email地址,甚至可以用[http://codex.wordpress.org/Template_Tags/the_author_posts_link the_author_posts_link()]获取某个作者所有日志的链接。 我们还可以用 [http://www.wordpress.la/codex-%E6%A8%A1%E6%9D%BF%E6%A0%87%E7%AD%BE-bloginfo%28%29.html bloginfo]来添加网站名称等基本信息,或者用[http://codex.wordpress.org/Template_Tags/previous_post previous_post()] 和[ title="Template Tags/next post" href="http://codex.wordpress.org/Template_Tags/next_post next_post()]为访问者[http://www.wordpress.la/codex-%E2%80%9C%E4%B8%8A%E4%B8%80%E7%AF%87%E2%80%9D%E5%92%8C%E2%80%9C%E4%B8%8B%E4%B8%80%E7%AF%87%E2%80%9D%E5%AF%BC%E8%88%AA%E9%93%BE%E6%8E%A5.html 导航]。使用WordPress 1.5.1.3之后版本的访问者在浏览某一分类下的日志时,我们可以利用“上一篇”和“下一篇”模板标签为他们显示存档日志。下面是模板标签在<EM>日志元数据</EM>中众多用法的几个示例。 在最简单的示例中,日志元数据是: POST TITLE: <?php the_title(); ?><br /> AUTHOR: <?php the_author(); ?><br /> POSTED: <?php the_time('jS F Y') ?><br /> FILED AS: <?php the_category(', ') ?><br /> COMMENT FEED: <?php comments_rss_link('RSS 2.0'); ?><br /> PREVIOUS: <?php previous_post('%', '', 'yes', 'yes'); ?><br /> NEXT: <?php next_post('%', '', 'yes', 'yes'); ?> 在网页上的显示结果是: *POST TITLE: [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags WordPress Makes Me Smile] *AUTHOR: [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags Harriet Smith] *POSTED: 20 April 2004 *FILED AS: [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags WordPress], [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags News] *COMMENT FEED: [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags RSS 2.0] *PREVIOUS: [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags Things to Do With WordPress] *NEXT: [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags Why I Like WordPress] 如果希望日志元数据显示在侧边栏中,并且希望日志元数据带有对话风格,可以在模板文件sidebar.php中,找到合适的位置插入以下代码: [[Image:20100318001.png|WordPress日志元数据]] 以上内容在大多数侧边栏的显示效果是: You are reading the article, [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags WordPress Makes ] [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags Me Smile], on our website, [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags Talking Blog]. This article was written on May 15, 2004, in Seattle, Washington, and you can find similar articles in the [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags WordPress] and [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags Blog] categories, or more articles by [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags Harriet Smith], if you enjoyed this article. If you have any comments about this article, you can contact Harriet Smith by [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags email], or leave a comment below. You can also follow comments made on this article via our [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags RSS 2.0] feed. If you would like to continue reading more, the previous article on our site is called [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags Things ] [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags To Do With WordPress] and the next article is called [http://codex.wordpress.org/Post_Meta_Data_Section#Adding_Template_Tags Why I Like WordPress]. Thank you for visiting our site. 这只是一个开始。我们还可以通过很多方式设计日志元数据:将元数据放入文本框,将元数据显示为正文的一部分,将元数据以列表形式显示....这完全取决于我们对日志元数据格式的构思,以及我们希望展现给读者的、关于日志的信息。 ==更多资源== *[http://www.wordpress.la/codex-%E5%88%9D%E8%AF%86%E6%A8%A1%E6%9D%BF%E6%A0%87%E7%AD%BE.html 初识模板标签] *[http://www.wordpress.la/codex-%E8%AE%BE%E7%BD%AE%E6%97%A5%E6%9C%9F%E5%92%8C%E6%97%B6%E9%97%B4%E6%A0%BC%E5%BC%8F.html 设置日期和时间格式] *[http://www.wordpress.la/codex-%E8%AE%BE%E7%BD%AE%E5%88%86%E7%B1%BB%E7%9A%84%E6%98%BE%E7%A4%BA%E6%96%B9%E6%B3%95.html 设置分类的显示方式] *[http://www.wordpress.la/codex-%E6%A8%A1%E6%9D%BF%E6%A0%87%E7%AD%BE.html 模板标签] *[http://www.wordpress.la/codex-%E7%94%A8CSS%E5%AE%9A%E5%88%B6%E5%88%97%E8%A1%A8%E6%A0%B7%E5%BC%8F.html 用CSS定制样式列表] *[http://www.wordpress.la/codex-%E6%98%8E%E4%BA%86%E7%9A%84%E5%AF%BC%E8%88%AA%E9%93%BE%E6%8E%A5.html 明了的导航链接] *[http://www.wordpress.la/codex-%E2%80%9C%E4%B8%8A%E4%B8%80%E7%AF%87%E2%80%9D%E5%92%8C%E2%80%9C%E4%B8%8B%E4%B8%80%E7%AF%87%E2%80%9D%E5%AF%BC%E8%88%AA%E9%93%BE%E6%8E%A5.html “上一篇”和“下一篇”导航链接] *[http://www.wordpress.la/codex-WordPress%20Feeds.html WordPress Feeds] ==相关条目== *[[Drupal]] *[[OBLOG]] *[[X-Space]] *[[SaBlog-X]] *[[Bo-Blog]] [[category:WordPress中文文档|R]] [[category:WordPress使用|R]]
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)
本页使用的模板:
模板:WordPress导航
(
查看源代码
)(受保护)