初学者:如何将永久链接添加到 WP_Query 多个自定义 post 类型?

Beginner: How to add permalink to WP_Query multiple custom post types?

我正在制作一个显示多种 post 类型的非常简单的页面。如何将永久链接添加到从 the_post_thumbnailthe_content 返回的值?

    <?php
$custom_query = new WP_Query( 
    array(
    'post_type' => array('downloads', 'bjd', 'prints'),
    ) 
);
if ( $custom_query->have_posts() ) : while ( $custom_query->have_posts() ) : $custom_query->the_post();

    the_post_thumbnail('productgal-thumb');
    <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
    the_content();

endwhile; endif; wp_reset_query();
?>

此外,如果我尝试将这些函数放在简单的 <div> 元素中以格式化样式,它也会破坏代码。

就这么用

<?php
$custom_query = new WP_Query( 
    array(
    'post_type' => array('downloads', 'bjd', 'prints'),
    ) 
);
if ( $custom_query->have_posts() ) : while ( $custom_query->have_posts() ) : $custom_query->the_post(); ?>

  <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('productgal-thumb'); ?> </a>
        <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
        <a href="<?php the_permalink(); ?>"><?php the_content(); ?> </a>
<?php 
endwhile; endif; wp_reset_query();
?>

试试这个:

<?php
  $custom_query = new WP_Query( 
  array(
      'post_type' => array('downloads', 'bjd', 'prints'),
      ) 
  );
  if ( $custom_query->have_posts() ) :
    while ( $custom_query->have_posts() ) : $custom_query->the_post();

    the_post_thumbnail('productgal-thumb');
?>
<a href="<?php echo get_the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php
    the_content();

    endwhile;
  endif;
  wp_reset_query();
?>