您当前的位置:首页 > TAG信息列表 > loop

  • 页面模板显示内容(GET_PAGE)

    时间:2012-11-28

    我的问题是,我在索引上显示了3页的内容。通过使用get\\u page()创建php。问题是每个页面都有自己的页面模板/* Template Name: another page template */ 其中包含类别中包含3个帖子的循环。这样,我只能看到在WP编辑器中键入的页面内容,而不能看到页面上查询到的帖子。如何在索引上显示页面模板中的三篇文章。php?用于在索引上显示页面。我使用的php:<?php $id = 1; $post = get_pag

  • 获取父类别的子级

    时间:2012-11-29

    我试图让所有的子类别都显示在这个循环中,但我正在努力处理代码。这就是我目前所拥有的。<?php $args=array(\'orderby\' => \'name\', \'order\' => \'ASC\'); $categories=get_categories($args); foreach ($categories as $cat) { ?> <dt><a href=\"#\" class=\"custo

  • 显示帖子限制:无法进行分页显示

    时间:2012-11-30

    Possible Duplicate:Pagination not working with custom loop 我正在为登录的当前用户创建一个自定义页面,以查看他们的帖子。我想将显示的帖子数量限制为5篇,但无法显示分页。这就是我正在使用的:<?php if ( is_user_logged_in() ): global $current_user; get_currentuserinfo(); $author_query = array(\'posts

  • 不带任何分类的循环帖子

    时间:2012-11-30

    我已经按照一些自定义分类法对页面进行了分组。但我需要关心那些没有任何分类集的人。我的代码是:$page_groups = get_terms(\'page_group\'); //get all existing page groups foreach ($page_groups as $page_group) { //for every of them $group_name = $page_group->name; //get group name

  • Using has_tag() outside loop

    时间:2012-12-01

    我想检查下一篇文章是否有特定的标签。我尝试了以下代码,但不起作用,因为has_tag() 仅在循环中有效。我想在循环之外使用它。<?php if ( has_tag( \'mario\', $post->ID ) ) : ?> my content <?php endif; ?> 下面的代码列出了post中的标记,但我不知道如何使用if() / else() 条件:global $post; foreach ( get_the_tags( $

  • 判断ID是页面还是帖子,查询ID

    时间:2012-12-02

    我想查找页面id并确定它是页面还是帖子。然后查询id并显示标题、特色图片等内容。这适用于以下页面: query_posts(\'page=\' . $featured_tab); 本工程或岗位: query_posts(\'p=\' . $featured_tab); 这将告诉我$featured\\u标记是否是帖子或页面: get_post_type( $featured_tab ) 但这不起作用 foreach ( $featarr as $

  • 从循环中删除5个最新帖子

    时间:2012-12-07

    最近我为我的WordPress博客做了一个主题。现在我想从主页上筛选(删除)我的5篇最新帖子(index.php) 并在滑块中显示它们。现在,我的5篇最新帖子同时显示在第一页和滑块中:(更新:感谢您的回复。我无法解决我的问题。这是我的索引。php来源:<?php get_header() ?> <div id=\"main-wrapper\"> <div class=\"middle-content\"> <

  • 如何在不修改主题的情况下控制自定义帖子类型的输出?

    时间:2012-12-07

    我有一个自定义的帖子类型“properties”,我想控制它的HTML输出。为了简单起见,让我们将重点放在archive 看法作为一个基本示例,下面是archive.php 文件:<?php while ( have_posts() ) : the_post(); ?> <h2><?php the_title(); ?></h2> <div><?php the_content(); ?></div

  • 查询帖子排除整个类别

    时间:2012-12-07

    我使用的是标准wordpress循环,如下所示: <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h2><?php the_title(); ?></h2> <?php endwhile; else: ?> <h2>We\'re sorry...there is no cont

  • 如何防止两个多循环中的一个在第二页上重复?

    时间:2012-12-07

    我有一个包含多个循环的页面,但第一个循环会在第二个(或更早的)页面上重复。我想保留格式,但阻止帖子重复。您可以在此处看到问题:http://violentology.com/blog/在我的索引中。php文件,我有代码:<table width=\"980\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"> <tr> <td colspan=\"3\" style=\"

  • Landing Page - Redirect Loop?

    时间:2012-12-08

    为此,最近给出了此解决方案(感谢D先生)Wordpress redirect to landing page if not logged in 线<?php if($_SERVER[\'REQUEST_URI\'] != \'.../\' || $_SERVER[\'REQUEST_URI\'] != \'.../\'){ if(!is_user_logged_in()) { wp_redirect( \'http://www.mysite.com/landingp

  • WordPress查询不工作吗?

    时间:2012-12-08

    //Display All Reviews function display_all_reviews( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( \'tag\', \'reviews\' ); } } add_action( \'pre_get_posts\', \'display

  • 是否将wp_link_ages()更改为“下一页”和“上一页”按钮?

    时间:2012-12-09

    目前我正在使用<!--nextpage--> 将帖子拆分为多个页面,但我想从Pages: 1 2 3 4 到Next Page 和Previous Page 链接类似于您在此上看到的内容multipaged post在我的single.php 我有:<?php wp_link_pages( array( \'before\' => \'<div class=\"page-links\">\' . __( \'Pages:\', \'pearl\' ), \'after\

  • 如何在循环中强制执行特定的自定义POST类型

    时间:2012-12-09

    我正在开发一个博客,其中的主要帖子都是自定义的帖子类型。让我们假设它是一个Book custom post类型。我希望/author/admin页面列出作者管理员的书籍,但相反,它会去搜索管理员的帖子,这是内置的基本帖子类型。如何使我的自定义post type Book用于所有此类索引查询?(主页、作者、搜索等)。

  • 基于单个帖子自定义字段的自定义查询

    时间:2012-12-10

    我有一些帖子有一个yyyy-mm-dd格式的自定义字段日期。我想做的是在一个页面的侧面列出特定年份的所有帖子,该页面基于该帖子自定义字段中的年份,并分为几个月。例如,如果帖子的自定义字段日期为1990,那么我想在页面的一侧列出1990年以来的所有帖子,并按月份排序。我必须使用此自定义字段日期,不能使用Wordpress内部日期函数。下面,我只提取了自定义字段date中的年份,用于查询,它返回了从单个post自定义字段的日期起到post的所有链接。此查询显示在single post循环外部的single p

  • 自动统计单个帖子的浏览量

    时间:2012-12-10

    我试图为主题中调用的每个循环添加一些函数。我要做的是在这里添加一个函数来计算后期视图post views without plugin, 要使用该函数,我需要添加此行<?php setPostViews(get_the_ID()); ?> 到single.php, page.php, 等我想知道我是否可以使用一些钩子来自动添加<?php setPostViews(get_the_ID()); ?> 没有硬代码的行single.php, page.php 文件。

  • 一个循环用于粘性,一个循环用于所有其他-如何,不指定类别?

    时间:2012-12-10

    我设计了一个归档页面的样式,在顶部显示一篇带有特殊设计的贴子,然后以标准标题/摘录格式显示该类别中的所有其他贴子(贴子除外)。我已经为两个循环指定了目标类别:仅粘性:<?php $args = array( \'cat\' => 3, \'posts_per_page\' => 1, \'post__in\' => get_option( \'sticky_posts\' ), \'ignore_sticky_posts\' => 1

  • Limit Loop to 5 Posts?

    时间:2012-12-11

    这是我当前的循环:<?php if ( ! empty ( $GLOBALS[\'post\'] ) && is_single() && in_category( \'movies\', $GLOBALS[\'post\'] ) ) : $movies = new Wp_Query(\'tag=movie-reviews\'); while ( $movies->have_posts() ) : $movies->the_post

  • 将开机自检固定链接置于循环之外不起作用

    时间:2012-12-11

    我正试图通过wordress插件将post的永久链接排除在循环之外。似乎什么都没用。以下是未链接到任何permalink的原始代码。public function get_comments_count($single){ if (isset($this->params[\'comments\']) && $this->params[\'comments\'] == \'yes\'){ return \'<div id

  • 当我使用GET_TEMPLATE_PART时,如何在循环的第一个POST之前显示图像?

    时间:2012-12-11

    我以前使用过$count,但从未遇到过此问题。我不能让它工作。我的php背景有限,请耐心等待!以下是$count设置代码:<?php $count = 0; ?> <?php if ( have_posts() ) : // Start the Loop ?> <?php $count++; ?> <?php while ( have_posts() ) : the_post(); ?>