2013-03-01 46 views

回答

1

我稍微不清楚你的問題。你在尋找一種方法來訪問添加媒體按鈕?

試圖回答你的問題 - >這種方法可以讓你獲得媒體章節中的所有附件。目前它顯示所有內容,但你可以按照你想要的方式操縱它。

參考:http://codex.wordpress.org/Template_Tags/get_posts

$args = array('post_type' => 'attachment', 'numberposts' => -1); 
$attachments = get_posts($args); 
if ($attachments) { 
    foreach ($attachments as $attachment) { 
     echo apply_filters('the_title' , $attachment->post_title); 
     the_attachment_link($attachment->ID , false); 
    } 
} 
相關問題