如何从cubeportoolio获取permalink,从posts获取title/thumbnail?使用wordpress中的post_type语法。
这是我的代码:

<?php

$posts = get_posts(array(
'posts_per_page'   => 1,
'post_type'            => 'cubeportfolio' ));

if( $posts  ): ?>
<?php foreach( $posts as $post ): setup_postdata( $post ) ?>
    <li>
      <a href="<?php the_permalink(); ?>">

直到这里代码被激活。
所以我得到了好的永久链接,但我的标题是错误的,我甚至没有试图得到缩略图。
<?php
$args = array(
'post_type'=> 'post',
'order'    => 'date'
);

echo get_the_title($recent)."<br/>";
wp_reset_postdata();
?>


</a>
</li>

        <?php endforeach; ?>
        </ul>

    <?php wp_reset_postdata(); ?>

<?php endif; ?>

我读了一些文档中的内容,但还是想不出来。
我想要一个ul,这样人们可以点击文章,但问题是,我正在一个插件我的博客。这是错误的标题和缩略图,所以我要的是cubeportfolio的永久链接(这是一个post_类型)。我想从帖子中得到标题(这是一种帖子类型)
孔代号:
$posts = get_posts(array(
'post_type'         => 'cubeportfolio',
'order'    => 'date' ));

if( $posts  ): ?>
<?php foreach( $posts as $post ): setup_postdata( $post ) ?>
<li>
<a href="<?php the_permalink(); ?>">

<?php wp_reset_postdata(); ?>

<?php
$args = array(
'post_type'=> 'post',
'order'    => 'date'
);





 echo get_the_title($recent)."<br/>";


 wp_reset_postdata();
 ?>


 </a>
 </li>

 <?php endforeach; ?>
 </ul>

 <?php wp_reset_postdata(); ?>

 <?php endif; ?>

任何帮助都将不胜感激,

最佳答案

我很乐意帮助你,但我需要理解你想做什么。从上面的代码中,您将拉入1个“cubeportfolio”,然后执行另一个查询来拉入“posts”,然后输出它们的标题。如果试图创建指向“cubeportfolio”的无序链接列表,则不需要第二个查询。

<?php $args = array(
                  'post_type' => 'cubeportfolio',
                  'posts_per_page' => 1,
                  'order' => 'ASC'
             );
  $the_query = new WP_Query( $args );
  if( $the_query->have_posts() ) { ?>
      <ul>
      <?php while ( $the_query->have_posts() ) { $the_query->the_post();
          <li>
              <a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a>
          </li>
      <?php } wp_reset_postdata(); ?>
      </ul>
  <?php endif; ?>

这只会拉入一个“cubeportfolio”项,因为查询设置为每页1个post_。希望这有帮助,如果没有请帮助我了解你的计划,我可以更新代码来帮助你。

09-28 05:42