0

我試圖從wordpress添加圖片到我的php頁面。我已經叫WP-load.php爲WordPress:在wordpress中添加圖片到flexslider

require_once("blog/wp-load.php"); 

不過,我不知道如何調用特定的帖子在那裏我可以使用圖像在該職位要到我的Flex滑塊。

<div class="flexslider"> 
    <ul class="slides"> 
    <li><img src="<?php 
    //???? 
    ?>" /> 

如何調用特定帖子,然後從該特定帖子中獲取所有圖像文件路徑,然後將其粘貼到圖像的src上?我希望它在帖子內,所以如果我想改變圖片,我只是編輯帖子。

回答

1

你試過用get_posts()嗎?

$args = array('post_type' => 'attachment', 
     'posts_per_page' => -1, 
     'post_status' => 'any', 
     'post_parent' => **THE_ID_OF_THE_POST**); 
$attachments = get_posts($args); 
//ETC...