如何在WordPress的帖子中使用其他页面的精选图像?

时间:2017-02-22 14:45:33

标签: wordpress taxonomy

我有一个分类页面taxonomoy-$slug.php,我希望能够在其上显示另一个页面的精选图像。没有插件有没有办法做到这一点?

2 个答案:

答案 0 :(得分:0)

是的,你可以,但你需要获得该页面的ID。

get_the_post_thumbnail( $post_id, 'full' );

此功能可以为您提供页面的精选图像,您应该在该页面中显示要从中获取的特定页面的ID。您还可以传递所需的图像尺寸。

有关详细信息:get_the_post_thumbnail()

希望这些信息对您有所帮助。

答案 1 :(得分:0)

您必须将页面ID静态放入变量中,就像下面的代码一样:

<TextBox Text="{Binding YOUR_PROPERTY}"
         FontFamily="ms-appx:///Assets/PassDot.ttf#PassDot"
         FontSize="35"/>

现在,将此$ image变量放在标记内:

<?php 
$post_id = 12;      //place here your page id  
$post_thumbnail_id = get_post_thumbnail_id( $post_id ); 
$image = wp_get_attachment_image_src( $post_thumbnail_id ); ?>

我希望,这可能对你有所帮助。