热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

wordpress动作循环

序言"循环"是一个指明WordPress主要程序过程的术语。你在你的模板模板文件中应用循环来把你的文章表现给读者。你可以制做不包含循环的模板,但是你就只能展示一篇文章的数据了。在我们进入'循环'之前,让我们先来了解一点关于WordPress在循环开始前的动作情况的背景知识。它要做的第一件

序言

"循环"是一个指明WordPress主要程序过程的术语。你在你的模板模板文件中应用循环来把你的文章表现给读者。你可以制做不包含循环的模板,但是你就只能展示一篇文章的数据了。

在我们进入'循环'之前,让我们先来了解一点关于WordPress在循环开始前的动作情况的背景知识。它要做的第一件事就是检查它所需要提供的所有文件。然后,它会从数据库收集博客管理员的默认设置。这包括如每一页展示的文章数,评论是否加载,以及其它一些东西。一量这些默认的数据建立好了,WordPress检查用户请求内容。这一信息将被用来决定那些文章会被从数据库抓取出来。

如果用户没有请求特定的文章,分类,页面或数据,WordPress使用提前采集好的默认数据来决定把那些文章提供给用户。例如,如果博客管理员已经在管理?>设置?>?阅读设定显示5篇文章在每个页面,那么WordPress将会从数据库抓取最新的五篇文章给用户。如果用户请求了特定的文章,分类,页面或者是数据,那么WordPress将会使用这个信息决定从数据库取出那些数据。

一旦这些过程完成,WP连接到数据库,检索特定的信息,将结果存在一个变量。循环需要调用这个变量来控制你的模板输出。

默认的,如果访客没有选定一些特定的文章,页面,分类,或数据,WP使用index.php来展示所有东西。做为讨论循环的第一个部分,我们将集中讨论index.php,以及按默认值输出你的文章的情况,后面,只要你理解了这工作是怎么完成的,我们将介绍在其它模板文件下的循环技术。

世界上最简单的index页面

下面展示了一个全功能的首页文件(index.php), 他仅展示了每篇文章的内容,使用中视具体情况去调整循环。 这个展示的目的是向你证明一个循环是多么简单。 大多数在index.php?里的循环增加了更多的css,html,php,这些都让这个循环看起来更强大也更漂亮。

现在就让我们做一些东西让循环看起来更漂亮吧!

默认循环

下面我们来一步一步看?默认?和?经典?的循环是怎么实现的,基于标准的WordPress v1.5.

开始循环

index.php文件顶部可以看到循环如何开始.


  1. 首先, 通过have_posts()方法来检查是否有文章。
  2. 如果有文章, PHP?while循环开始.?while?循环会一直执行一直到其括号里的条件为真。所以直到have_posts()返回真,while循环就不会停止(have_posts()?方法单纯的检查下一篇文章能否找到。如果找到了,if判断返回真,while循环就再次执行;如果没有下一篇文章,if判断返回假,跳出循环)。

产生文章

the_post()方法获取到posts集合中的当前post并使得它在循环迭代器中有效使用. 没有?the_post(), 大多数?模板标签?都不能用了。

当文章信息可用时,模板文件向访问者展现文章信息。

标题、日期及作者

下面的模板标签?得到了当前文章标题,时间和作者。

by

文章内容

the_content()是文章内容。它是循环里文章的“肉”。

如果你熟悉CSS,注意到div?被赋予?class="entry".这样你就可以根据这个特定的符号来对其进行设定样式或功能。

更多标签?: 如果文章包含快速标签?叫做?更多, 写做?,所有之前的将在循环中显示,之后的被省略。

单独文章页面??将被无视。所以使用??可强迫读者进入单独文章页面。

其它细节

Beneath each post's content in the?index.php?template file is a place to display more information about the post, such as the categories, date, and comment information. Known as the?post meta data section, if you're a logged in user of sufficient privilege (or the post's author), you will also see an "Edit This" link, thanks to the?edit_post_link()?template tag function.

Posted in | |');??>

If commenting is enabled, or if the post has comments, the?comments_popup_link()?template tag will display a link to the comments. If you're using the?comments popup window, this link will open the comments window; otherwise it will jump right to this post's comments.

If the visitor is viewing an index of posts (i.e.:?more than one post in The Loop), the?comments_popup_link()link will take the reader to this post's individual page.

自动发现Trackback

The?trackback_rdf?template tag's function is to output machine-readable code used for?trackback?auto-discovery.


Note:?The?trackback_rdf()?tag is supposed to be used with?comments?around it. It is not "turned off".

结束循环

The following ends The Loop. After this, the various post-related template tags will not work as expected (or if they do, they will use the last post from The Loop). This means, that if you need to use a template tag that works?within The Loop, you need to put it in before this point.

This section, immediately after the end of The Loop, displays navigation controls to move forward and backward by each web page. More information is available in function reference for?posts_nav_link().

 

If the blog is set to display 10 posts per page, and the conditions used by The Loop collect 25 posts, there will be three pages to navigate: two pages of 10 posts each, and one page of 5 posts. The navigation links will allow the visitor to move forward and backward through the collection of posts.

The navigation controls are included?outside?The Loop, but?inside?the?if?condition, so that they only show up if there are any posts. The navigation functions themselves also check whether or not there is anything to which they will link, based on the current Loop, and only display links if there's something to link.


 

Not Found

The?else?:?clause determines what to do if?have_posts()?(from way up at the top) is false. That is to say, the stuff after the?else?will only be executed/displayed if The Loop had zero posts. No posts show up if, for example, the visitor requested a specific day for which no posts were made or a search was performed that produced no results.

  

This ends the conditional test of "if there are posts do this, else if there are no posts, do that". Once the conditional test is finished, the default index.php template next includes the sidebar, and finally the footer.

其它模板中的循环

WordPress会用不同的模版文件使得博客的显示方式多彩多样。在默认的WordPress主题中,利用?template files?的 主页视图,分类视图,以及存档视图来作为显示单独文章的模版。 每个使用?The Loop的模版,但采用了稍微不同的样式, 则参考?template tags的不同用法.

For any view which does not have a separate template file, WordPress will use?index.php?by default. If a visitor requests a single post, WordPress will first look for a file named?single.php. If that file exists, it will be used to present the post to the visitor. If that file does not exist, WordPress will use?index.php?to present the post to the visitor. This is called the?Template Hierarchy.

If you are making your own?Theme, it's often helpful to look at the?template files?from the default Theme as a point of reference. It's also helpful to use your theme's?index.php?as a template for your other template files. Doing so may give you a known and working page from which to begin making changes as you create more template files.

不同的存档格式

An?archive?is a collection of historical posts. In the default usage, the posts displayed on your main index are recent?chronological?postings. When a visitor clicks on one of your archive links, or if they manually request a specific date (http://www.example.com/blog/index.php?m=200504 or http://www.example.com/blog/2005/04 to select all posts from April, 2005), WordPress will display an?archive?view. By default, the archive will use?index.php, and thus look the same as your front page, just displaying the posts from April 2005.

When WordPress prepares an?archive view?for a visitor, it specifically looks for a file named?archive.php?in your current theme's directory. If you'd like to visually disambiguate archives from your front page, simply copy?index.php?to?archive.php, and edit?archive.php?as necessary!

For example, if you want to show only post titles, and no post content, for your list of archives, you could use something like this:


 

Not Found

不同的分类格式

Like the archive views, WordPress looks for a separate template file for?category views. If a visitor clicks on a link for a category in your blog, they will be taken to the category view. WordPress will prepare The Loop with posts from that category only, limiting the number of posts per the blog's default settings.

To make your category view different from your index view, copy?index.php?and rename it?category.php. For a category view, it's probably not necessary to list the categories to which a post is assigned, so let's remove that portion. Instead, let's announce the category at the top of the page:


 


Not Found

不同分类不同格式

As explained in the?Template Hierarchy, it is possible to?create separate template files for each category. Simply name the file?category-X.php, where?X?is the numerical ID of the category. Consider carefully whether you need a whole new template for a specific category.

Let's look at two categories, "Plants" and "Flowers", with category IDs 3 and 4, respectively. Next to each post title in the output you want to have picture of either a plant, or a flower, depending on which category is being displayed. You could:

  • Use two separate files,?category-3.php?and?category-4.php, each with a different?img?tag for each post title.
  • Use a conditional test inside your default?category.php?file to check whether the current category is "Plants" or "Flowers" (or neither), and display the appropriate image:

 a plant

 a pretty flower

If you added another category, "Cars", which you wanted to display in a?significantly?different way, then a separate?category-X.php?would be more appropriate.

不同分类不同的CSS样式

Many users want to create separate CSS files for a specific category. This, too, can be easily accomplished. It is important to remember that stylesheets are defined and loaded in the??section of the HTML document. WordPress uses the?header.php?file for this. In the default?header.php, find this line:

" type="text/css" media="screen" />

And change it to something like this:


  /category-5.css" type="text/css" media="screen" />;

   " type="text/css" media="screen" />

Note:?The Cars template uses the?category-5.css?file to override the default layout. In this example the CSS file is named after the category template file to which it will be applied, rather than the actual name of the category. Thus, you know that?category-5.css?goes with?category-5.php.

不同的单文章格式

When viewing any single post (or?permalink), WordPress will use?single.php, if present.

This portion, from the WordPress default single.php, provides the?post meta data information?about the current post:

This entry was posted on at and is filed under . You can follow any responses to this entry through the feed. comment_status) && ('open' == $post->ping_status)) { // Both Comments and Pings are open ?> You can leave a response, or trackback from your own site. comment_status) && ('open' == $post->ping_status)) { // Only Pings are Open ?> Responses are currently closed, but you can trackback from your own site. comment_status) &&?!('open' == $post->ping_status)) { // Comments are open, Pings are not ?> You can skip to the end and leave a response. Pinging is currently not allowed. comment_status) &&?!('open' == $post->ping_status)) { // Neither Comments, nor Pings are open ?> Both comments and pings are currently closed.

This sort of information -- whether comments are open or closed -- is largely inappropriate on an index, archive, or category view; which is why it's only included in the?single.php?template file.

其它循环技巧

Now that you have a good introduction to the basic uses for the WordPress Loop, let's introduce you to some more Loop effects and tricks.

静态首页

如何做到使某些特殊的内容显示在首页?没错,仅显示在首页,而不是你网站上任何其他的页面。非常简单!这我们称之为静态首页。 你网站的首页或第一页并非是真正静态的,而是通过循环使之看起来那样。

为了做到这点,我们使用条件模板标签is_home()

在?index.php, 使用?if()?判断来选择性的输出额外的内容:


";
 // and now back to our regularly scheduled home page
}??>

当访问者请求的不是某一个文章、页面、分类或日期时,函数?is_home()?才会返回true。于是乎以上内容将仅显示在首页。

要了解更多,请查看?创建静态首页.

只显示摘要

The easiest way to display excerpts, instead of the full content, of posts, replace all instances ofthe_content()?with?the_excerpt(). If you have not created explicit excerpts for your posts, this function will automatically display the first 55 words of the post.

依靠文章编号显示摘要或全文

In some circumstances, for example on archive pages, you may want to show the full post if there is only one post or excerpts if there are multiple posts. You can customize the loop to do this.



  post_count) > 1)?:??>
     
       
          
       
     

  

     
       
          
       
     

  


     

不同的顶栏边栏底栏

WordPress offers the?get_header(),?get_sidebar(), and?get_footer()?Include Tags?for use in your?template files. These functions make it easy to define a standard header/sidebar/footer which is easily editable. Any changes made to these files will immediately be made visible to viewers, without any work on your part.

But sometimes you might not?want?a sidebar. If you don't want a sidebar, simply exclude the call to theget_sidebar()?function from your template. For example, the?single.php?template in the WordPress default theme does not include a sidebar.

To create your own?different?sidebar, you have two choices:

  1. Include the sidebar contents directly into the template file on which you're working. If you want category-3 to have a different sidebar, edit?category-3.php?and include the necessary HTML and PHP to generate your distinctive sidebar.
  2. Use the PHP?include?function, to include another file. The WordPress?get_sidebar()?function?only?loadssidebar.php. If you make a file named?sideleft.php, you would include it like this:

In WordPress?Version 2.5?and above you can also call a sidebar like this:

This causes the template TEMPLATEPATH . 'sidebar-right.php' to be included.

Using the WordPress default?Template Hierarchy, if you want to use the same elements on multiple or different templates, it's probably best to put them in separate template files and use the PHP?include()?function. If the element you're adding is specifically for one template file, it's probably best to include it directly in that template file.

综述

我们刚刚大致了解了如何处理循环。提醒一下,下面是能帮助你自定义你自己WordPress Loop的资源。


推荐阅读
  • 在Linux系统中配置并启动ActiveMQ
    本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ... [详细]
  • QUIC协议:快速UDP互联网连接
    QUIC(Quick UDP Internet Connections)是谷歌开发的一种旨在提高网络性能和安全性的传输层协议。它基于UDP,并结合了TLS级别的安全性,提供了更高效、更可靠的互联网通信方式。 ... [详细]
  • 国内BI工具迎战国际巨头Tableau,稳步崛起
    尽管商业智能(BI)工具在中国的普及程度尚不及国际市场,但近年来,随着本土企业的持续创新和市场推广,国内主流BI工具正逐渐崭露头角。面对国际品牌如Tableau的强大竞争,国内BI工具通过不断优化产品和技术,赢得了越来越多用户的认可。 ... [详细]
  • 本文总结了2018年的关键成就,包括职业变动、购车、考取驾照等重要事件,并分享了读书、工作、家庭和朋友方面的感悟。同时,展望2019年,制定了健康、软实力提升和技术学习的具体目标。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • 技术分享:从动态网站提取站点密钥的解决方案
    本文探讨了如何从动态网站中提取站点密钥,特别是针对验证码(reCAPTCHA)的处理方法。通过结合Selenium和requests库,提供了详细的代码示例和优化建议。 ... [详细]
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • Linux 系统启动故障排除指南:MBR 和 GRUB 问题
    本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]
  • 本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]
  • 1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 前言--页数多了以后需要指定到某一页(只做了功能,样式没有细调)html ... [详细]
  • 如何在WPS Office for Mac中调整Word文档的文字排列方向
    本文将详细介绍如何使用最新版WPS Office for Mac调整Word文档中的文字排列方向。通过这些步骤,用户可以轻松更改文本的水平或垂直排列方式,以满足不同的排版需求。 ... [详细]
author-avatar
mobiledu2502885993
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有