如何从cubeportofolio获取永久链接,以及帖子中的标题/缩略图?使用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(); ?>">
直到这里代码是oke。 所以我得到了很好的固定链接,但我的标题是错误的,我甚至没有试图获得缩略图。
<?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_type)。我希望帖子中的标题(这是一个post_type)
孔代码:
$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; ?>
任何帮助将不胜感激,
答案 0 :(得分:0)
我很乐意帮助你,但我需要了解你想要做什么。从上面的代码中你可以输入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; ?>
这只会拉入1个“cubeportfolio”项目,因为查询设置为1 post_per_page。希望这有帮助,如果没有请帮助我理解你的计划,我可以更新代码来帮助你。