热门标签 | 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的资源。


推荐阅读
  • CSGO
    CSGOTimeLimit:40002000MS(JavaOthers)MemoryLimit:524288524288K(JavaOthers)ProblemDescriptio ... [详细]
  • CGroups: 资源管理和控制
    CGroups(Control Groups)是Linux内核提供的一个功能,旨在限制、记录和隔离进程组使用的物理资源,如CPU、内存和I/O等。它通过精细的资源管理,支持现代容器技术如Docker的资源限制需求。 ... [详细]
  • 深度兴趣网络在点击率预测中的应用研究
    本文探讨了一种名为深度兴趣网络(Deep Interest Network, DIN)的新方法,该方法通过捕捉用户的历史行为和当前上下文之间的交互来提高点击率预测的准确性。DIN模型不仅考虑了用户的静态偏好,还动态地调整了对不同商品的兴趣权重,从而实现了更加个性化的推荐。 ... [详细]
  • 本文探讨了一个项目中遇到的挑战,即如何通过技术手段解决不同菜单项触发时,跨域IFrame页面的高度自适应问题。通过创建中介页面和利用JavaScript与Cookie机制,实现无缝的用户体验。 ... [详细]
  • 深入解析Java中的锁类型及其应用场景
    本文详细介绍了Java中常见的锁类型,包括乐观锁与悲观锁、独占锁与共享锁、互斥锁与读写锁、可重入锁、公平锁与非公平锁、分段锁、偏向锁、轻量级锁、重量级锁以及自旋锁。每种锁的特性、作用及适用场景均有所涉及。 ... [详细]
  • 本文探讨了HDU 4035的问题,涉及一个由n个房间组成的迷宫,这些房间通过n-1条隧道相互连接,形成一棵树结构。任务是从起点1号房间出发,计算到达出口所需经过的平均隧道数量,考虑了在每个房间中可能发生的三种情况及其相应概率。 ... [详细]
  • 本文介绍如何利用Python中的Epoll机制构建一个高效的Web服务器,该服务器能够处理多个并发连接,并向每个连接的客户端返回预定义的响应文本。通过使用Epoll,服务器可以实现高性能的I/O多路复用。 ... [详细]
  • 一、数据更新操作DML语法中主要包括两个内容:查询与更新,更新主要包括:增加数据、修改数据、删除数据。其中这些操作是离不开查询的。1、增加数据语法:INSERTINTO表名称[(字 ... [详细]
  • 本文介绍了如何通过安装 VirtualBox 和 Vagrant 来快速搭建和管理虚拟机环境。我们将详细探讨如何选择合适的 Box 镜像,以及如何高效地下载、添加和管理这些镜像。 ... [详细]
  • HTML中用于创建表单的标签是什么
    本文将详细介绍HTML中用于创建表单的标签及其基本用法,包括表单的主要特性和常用的属性设置。如果您正在学习HTML或需要了解如何在网页中添加表单,这将是一个很好的起点。 ... [详细]
  • SQL注入实验:SqliLabs第38至45关解析
    本文深入探讨了SqliLabs项目中的第38至45关,重点讲解了堆叠注入(Stacked Queries)的应用技巧及防御策略。通过实际案例分析,帮助读者理解如何利用和防范此类SQL注入攻击。 ... [详细]
  • 解决fetch上传图片至微信公众号H5页面的问题
    在近期的一个项目需求中,需要在微信公众号内嵌入H5页面,并实现用户通过该页面上传图片的功能,包括拍摄新照片或从已有相册中选择。前端开发中采用了fetch API进行接口调用,但遇到了上传图片时数据无法正确传递的问题。 ... [详细]
  • 如何将Redis配置为后台服务
    本文介绍了在安装Redis后,如何通过修改配置文件使其以守护进程模式在后台运行,避免因控制台被占用而无法进行其他操作的问题。 ... [详细]
  • Linux 文件系统结构详解
    本文详细介绍了Linux操作系统的文件系统结构,包括其独特的树状目录体系、根目录的作用、目录与磁盘分区的关系等,并对各主要目录的功能进行了深入解析。 ... [详细]
  • KKCMS代码审计初探
    本文主要介绍了KKCMS的安装过程及其基本功能,重点分析了该系统中存在的验证码重用、SQL注入及XSS等安全问题。适合初学者作为入门指南。 ... [详细]
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社区 版权所有