Questions tagged «post-formats»

3
分类法和类别之间有区别吗?
我一直在仔细阅读WordPress的法典,并对分类法和类别是什么之间的模糊定义感到困惑。因此,术语也是在分类法描述中使用的单词,但似乎以暗示其不仅仅限于分类法的方式使用。 两者都被描述为对帖子进行分类和分组的一种方式。我确实知道分类法是类别的一种更一般的形式,但是它们之间如何精确地联系在一起? 我只是不了解而有细微的差别吗?

4
仅某些帖子格式的get_posts
我正在尝试仅使用“常规”帖子格式的文章(而不是链接,旁白,引号等格式)创建存档列表。 如何has_post_format( 'standard' )在下面的代码中实现或类似的方法? 我一直无法找到get_posts仅要求特定格式类型的查询。 <?php // Get the posts $myposts = get_posts('numberposts=-1&orderby=post_date&order=DESC'); ?> <?php foreach($myposts as $post) : ?> <?php // Setup the post variables setup_postdata($post); $year = mysql2date('Y', $post->post_date); $month = mysql2date('n', $post->post_date); $day = mysql2date('j', $post->post_date); ?> <p> <span class="the_article"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </span> …

3
has_post_format()与get_post_format()
我只是进入了帖子格式的概念,并且想知道为什么帖子格式“ API”中有三分之二的功能提供了完全相同的功能。考虑以下两个概念(A与B): if ( have_posts() ) { while ( have_posts() ) { the_post(); // A) has_post_format if ( has_post_format('format') ) { the_excerpt(); // some special formating } // VERSUS: // B) if ( get_post_format( $GLOBALS['post']->ID ) == 'format' ) { the_excerpt(); // some special formating } } // endwhile; } …

2
如何在WordPress 3.1中按帖子格式查询
我正在尝试查询帖子格式为“ quote”的所有帖子。我已经将发布格式添加到我的functions.php中 add_theme_support( 'post-formats', array( 'image', 'video', 'gallery', 'quote' ) ); 我已选择“引号”作为管理员中帖子的格式。Taxonomy_Parameters下的最后一个示例显示了如何显示具有“ quote”格式的帖子,但是当我在主题中运行该帖子时,不会返回任何帖子。这是代码: $args = array( 'tax_query' => array( array( 'taxonomy' => 'post-format', 'field' => 'slug', 'terms' => 'post-format-quote' ) ) ); query_posts( $args ); 当我只查询所有帖子和位置 echo get_post_format(); 在循环中,它在前端返回单词“ quote”。另外,当我使用var_dump()查询时,我在数组中看不到任何有关帖子格式的内容。 有谁知道是否可以通过帖子格式查询?如果可以,怎么办? 编辑-请参阅Bainternet的答案下的5条评论:这是在尝试返回格式类型引号的全新安装的二十个主题的index.php上找到的代码。我返回“ no”而不是“ quote”。你能看到我应该改变的任何东西吗? get_header(); ?> <div id="container"> <div id="content" …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.