您当前的位置:首页 > TAG信息列表 > get-posts

  • Cache Get_posts

    时间:2014-09-27

    我有一个查询(见下文),它提供了一个由10个新闻项组成的列表,这些新闻项按元值“event\\u date”排序,并经过筛选,以便只显示比今天更早的帖子。处理此查询需要两秒钟,因此我正在寻找一种简单的方法来缓存结果,以加快加载时间。我已经使用了WPEngine,所以我不需要任何缓存插件。提前感谢您的帮助。<?php $today = time();?> <?php $args = array( \'numberposts\' => 10, \'orderb

  • 显示当前帖子类型的所有帖子标题

    时间:2014-09-29

    我有一个自定义的帖子类型,叫做press.我在模板上single-press.php我想获得名为“press”的自定义帖子类型的帖子标题。这是我的密码,请引导我好吗? <?php function all_posts_custom_posts( $query ) { $post_type = $query->query_vars[\'post_type\']; if ( \'press\' == $post_ty

  • 列出过去一周的所有帖子,按子类别分组

    时间:2014-10-06

    在一个特定于类别的模板上,我想列出过去7天中单个类别的所有帖子,并按子类别对它们进行分组。这是我到目前为止的代码,它按类别列出了帖子,但不限于过去一周:<?php $categories = get_categories( \'child_of=83\' ); foreach ( $categories as $category ) { //Display the sub category information using $category valu

  • 用于计算定制岗位类型岗位数量的返工功能

    时间:2014-10-10

    我正在尝试重建我的内联帖子计数到一个函数。最好的方法是什么?以下是我的内联代码:$posts = get_posts(\'post_type=myposttype&customtaxonomy=mytax&posts_per_page=-1\'); $posts_count = count($posts); echo $posts_count; 在我的functions.php 我试过这个:function get_my_posts_count($myta

  • 在循环期间向_post()插入自定义数据

    时间:2014-10-15

    我在WordPress网站上有一些帖子,假设我想为每个帖子添加一个随机数$num 作为键和random() 作为值。然后我想通过以下方式访问它们:$post->num 或post_num() 这可以在循环过程中完成吗?由于每次执行时该值都会更改,因此我需要在循环期间进行设置。我无法将此随机数添加为自定义字段。有没有办法做到这一点?

  • 获取自定义分类下的帖子

    时间:2014-10-16

    我没有在自定义分类下获取帖子(fabric_building_types). 我正在cat_id 和cat->name 但也无法获得帖子。$args = array( \'type\' => \'post\', \'child_of\' => 0, \'parent\' => \'\', \'orderby\'

  • GET_POSTS查询匹配的结果太多

    时间:2014-10-16

    我在一个函数中有一个查询,它返回我不想要的匹配项,例如,当$id=116时,它还返回meta\\u键“funds\\u id”为11687的结果。 public function list_related_docs($id){ $docs_args = array( \'post_type\' => \'publication\', \'post_status\' => \'publish\',

  • 关于特定类别和自定义css的最新帖子

    时间:2014-10-21

    我正在尝试创建一个新的主页,其中包含两列特定类别的最新帖子。这是页面代码: <div id=\"left-column\"> <div class=\"bloccorosso\">News & Blog</div> <?php $catquery = new WP_Query( \'cat=5&posts_per_page=3\' ); while($catquery->have_posts

  • 重新排序GET_POSTS查询结果

    时间:2014-10-28

    我有一个查询,它从最近的3篇轮播帖子中提取字段:get_posts(\'posts_per_page=3\') 我需要重新排序结果1、2、3是的3、1、2。有什么办法吗?

  • WP_QUERY POST_PARENT参数始终返回当前页面的子级

    时间:2014-11-03

    好吧,标题揭示了一切。。。代码如下:$args = array( \"post_type\" => \"page\", \"post_parent\" => $cat, // runs through a loop of 5, 128, 130 \"posts_per_page\" => -1 ); print_r($args); $postsLang = new WP_Query($args); wh

  • SELECT*FROM$wpdb->帖子,ID>160

    时间:2014-11-08

    我想检索所有帖子和ID大于160的相对标签。我试过:\'$args=array( \'post_type\' => \'post\', \'post_status\' => \'publish\', \'posts_per_page\' => 5, \'orderby\'=> \'ID\', \'order\' => \'desc\', \'meta_query\' => array( array(

  • Get posts by category name

    时间:2014-11-10

    我很难弄明白这一点。我已经注册了自定义分类法(临床程序),并喜欢列出分配给特定页面的所有页面。

  • WP Query post meta value

    时间:2014-11-18

    我正在尝试获取应用了元值的帖子trainees.$args = array( \'posts_per_page\' => -1, \'orderby\' => \'post_date\', \'order\' => \'DESC\', \'post_status\' => \'publish\', \'meta_query\' => array

  • Worpress url parse

    时间:2014-11-18

    我想只显示带有给定标签的特定类别的帖子。解析url段塞时出现问题。例如,我有一个名为“衣服”的类别:实例com/衣服/我可以通过获取url参数来获取标记为“red”的此类帖子,如下所示:实例com/衣服/?标签=红色但我想用slug来实现,没有get参数。示例:实例com/衣服/标签/红色实例com/衣服/标签/大号我怎么能做到?

  • 获取具有特定元键的所有帖子,但具有特定标题的帖子除外

    时间:2014-11-18

    我需要返回所有帖子post_test_safe == 1 并排除带有title =\"Special title\"某种组合元查询,但没有任何工作。function getAllPostIdsTest(){ $args = array( \'post_type\' => \'post_test\', \'posts_per_page\' => -1, \'meta_query\' => array(

  • Get x recent posts by author?

    时间:2014-11-30

    因此,我的网站上有十位作者,我想指定一个部分,以帖子标题链接的形式显示这十位作者及其5篇最新帖子。我尝试使用以下<?php get_most_recent_post_of_user( $user_id ); ?> 但它不起作用,所以我觉得有点失落。有什么建议/建议吗?

  • 显示所有帖子标题以及类别和标签

    时间:2014-12-01

    我正在尝试显示属于特定类别且具有特定标签的所有帖子。这是我迄今为止所拥有的,但它似乎忽略了&;然后让它或。<?php $myposts = get_posts( \"cat=the_field(\'troubleshooting_category\')&tag_id=5\" ); foreach ( $myposts as $post ) : setup_postdata( $post ); ?> <li><a href=\"&l

  • 按作者函数分页获取相关帖子

    时间:2014-12-16

    是否可以将此函数分页?我已经尝试添加上一个和下一个链接,但I\'ts not working。。。function get_related_author_posts() { global $authordata, $post; $authors_posts = get_posts( array( \'author\' => $authordata->ID, \'post_type\' => \'kenniscent

  • 获取类别中的所有帖子(200+)-性能问题?

    时间:2014-12-18

    我想获取某个类别中前两篇和后两篇文章的ID,将其显示为“相关视频”播放列表。我知道有一些功能previous_post_link 和next_post_link, 这将为我做的工作,但我想要的不仅仅是一个前一个和一个下一个链接。设想以下场景:我想在Post 001上显示#002和#003。在帖子#003上,我想显示#001、#002、#004和#005。$post_id = $post->ID; // current post id $args = array(\'category

  • 仅显示GET_POST中第一个条目的_DATE和_EXCEPT

    时间:2014-12-23

    下面的代码显示了get\\u帖子中5篇帖子的标题和链接没问题,但只显示了第一篇帖子的日期和摘录。。。有什么帮助吗?<?php $args = array( \'posts_per_page\' => 5, \'post_type\' => \'my\', \'order_by\' => \'post_date\', \'tax_query\' => array(