简体   繁体   English

带有自定义分类查询循环的Genesis自定义帖子类型分页

[英]Genesis custom post type pagination with custom taxonomy query loop

I am trying to create Genesis pagination for a page housing all posts from a particular taxonomy. 我正在尝试为包含来自特定分类法的所有帖子的页面创建创世纪分页。 I would use the many solutions given in this WordPress Stack Exchange but I can't figure out how to incorporate their wp_query 's with mine. 我将使用此WordPress Stack Exchange中提供的许多解决方案,但无法弄清楚如何将其wp_query与我的合并。 How would I go about doing this? 我将如何去做呢? (Keep in mind, I am, by no means, a professional.) (请记住,我绝不是专业人士。)

Here is what I have in my template so far before I tried integrating pagination: 到目前为止,这是我尝试集成分页之前模板中的内容:

remove_action('genesis_loop','genesis_do_loop');
add_action('genesis_loop','get_article_content');
function get_article_content(){
    $myterms = get_terms('article-category', 'orderby=none&hide_empty');

    foreach ($myterms as $term) :

        $args = array(
            'post_type' => 'solar-articles',
            'tax_query' => array(
                array(
                    $term->slug
                )
            ),
        );

        //  assigning variables to the loop
        global $wp_query;
        $wp_query = new WP_Query($args);
    endforeach;

    // starting loop
    while ($wp_query->have_posts()) : $wp_query->the_post();
        ?><div class="col-md-12"><?php 
            the_title( '<h2 class="entry-title"><a href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '" rel="bookmark">', '</a></h2>' );
            ?><p class="entry-time">POSTED <?php the_time('F j, Y'); ?></p>
            <div class="entry-content"><?php
            the_excerpt();
        ?></div></div><?php
    endwhile;
}
genesis();

And here is what I have after I tried the integration: 这是我尝试集成后的结果:

remove_action('genesis_loop','genesis_do_loop');
add_action('genesis_loop','get_article_content');
function get_article_content(){
    $paged = 1;
    if ( get_query_var( 'paged' ) ) { $paged = get_query_var( 'paged' ); }
    if ( get_query_var( 'page' ) ) { $paged = get_query_var( 'page' ); }
    $paged = intval( $paged );
    $myterms = get_terms('article-category', 'orderby=none&hide_empty');

    foreach ($myterms as $term) :

        $args = array(
            'posts_per_page' => 3,
            'post_type' => 'solar-articles',
            'tax_query' => array(
                array(
                    $term->slug
                )
            ),
            'paged' => $paged
        );

        //  assigning variables to the loop
        global $wp_query;
        $wp_query = new WP_Query($args);

    endforeach;

    // starting loop
    while ($wp_query->have_posts()) : $wp_query->the_post();
        ?><div class="col-md-12"><?php 
            the_title( '<h2 class="entry-title"><a href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '" rel="bookmark">', '</a></h2>' );
            ?><p class="entry-time">POSTED <?php the_time('F j, Y'); ?></p>
            <div class="entry-content"><?php
            the_excerpt();
        ?></div></div><?php
    endwhile;
    genesis_posts_nav();
}
genesis();

Your foreach loop appears to overwrite the $wp_query variable before it can do anything. 您的foreach循环似乎可以覆盖$ wp_query变量,然后它才能执行任何操作。 If your taxonomy is a category, I created a page that shows only a specific category and paginates. 如果您的分类法是一个类别,那么我创建了一个页面,该页面仅显示特定类别并进行分页。 I put this in page-whatever.php: 我把它放在page-whatever.php中:

$myCategory = get_cat_ID('Knowledgebase');

remove_action('genesis_loop','genesis_do_loop');
add_action('genesis_loop', 'mry_events_do_loop');

function mry_events_do_loop() {
    global $mry_knowledgebaseCatId;
    $paged = (get_query_var('paged'))? get_query_var('paged'): 1; 
    $args = array('cat' => $mry_knowledgebaseCatId, 'posts_per_page' => 5, 'post_type' => 'post', 'paged' => $paged); 
    genesis_custom_loop($args);
}

Here is how I customized the look of the entries 这是我自定义条目外观的方式

add_action('genesis_entry_content', 'mry_entry_knowledgebase');
function mry_entry_knowledgebase(){
?>

<div class="articleImage">
     <?php 
 if(has_post_thumbnail()) {
     the_post_thumbnail(); 
     }
 else {
    echo mry_add_default_image("Thumb");
 }
 ?>
</div>
<div class="articleExcerpt">
<div class="titleArea"><a href="<?php the_permalink(); ?>"><span class="title"><h1><?php the_title(); ?></h1></span></a></div>
<div class="date"><time datetime="<?php echo get_the_date('c'); ?>"><?php echo get_the_date();?></time></div>
  <span class="excerpt"><a href="<?php the_permalink(); ?>"><?php the_excerpt(); ?></a></span>
</div>
<?php
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM