2012-03-23 93 views
1

你知道是否有任何插件或教程介紹瞭如何做到這一點?我會非常感謝任何幫助,因爲我不擅長PHP。從wordpress圖片庫獲取一張照片

我想在Wordpress頁面上添加照片並將其作爲標準圖庫粘貼到帖子內容中,然後我希望顯示圖庫但是我感興趣的是在該圖庫中獲取一組照片並且然後遍歷它。

這是幹什麼用的?我正在開發一個網站http://www.rasterbyte.com/,我想用這些圖片作爲背景幻燈片(按左/右鍵改變圖片)。目前圖像具有固定路徑,我希望它們可以爲每個頁面定製。

非常感謝您的任何建議。

回答

0

嗨Maciek西姆,

我的理解你的問題,你在文章中的圖片,你想在背景中顯示。

您可以設置首頁分類有5個帖子與特色圖像。

混帳特定圖像後

<?php $args = array(
    'width' => null, 
    'height' => null, 
    'css' => '', 
    'parent_id' => '', 
    'post_id' => '', 
    'filename' => '', 
    'return_html' => true  
); ?> 

more info

還要檢查How to: Get the first image from the post and display it

function catch_that_image() { 
    global $post, $posts; 
    $first_img = ''; 
    ob_start(); 
    ob_end_clean(); 
    $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); 
    $first_img = $matches [1] [0]; 

    if(empty($first_img)){ //Defines a default image 
    $first_img = "/images/default.jpg"; 
    } 
    return $first_img; 
} 
相關問題