如何在wordpress中的每个模板中使插件工作

时间:2013-03-23 06:51:50

标签: image wordpress templates plugins

我是插件开发的新手。我想获取特定页面/帖子的所有图像,并希望在页面下方以幻灯片形式显示它们。目前,我能够收集媒体库中的所有图像并显示它。 。但我想要图像,如果那个特定的页面..我已经知道要获得特定模板的图像你需要在该特定的帖子模板中添加代码行。但是如何使用插件来完成

$query_images_args = array(
        'post_type' => 'attachment', 'post_mime_type' =>'image', 'post_status' => 'inherit', 'posts_per_page' => -1,
    );

    $query_images = new WP_Query( $query_images_args );
    $images = array();
    foreach ( $query_images->posts as $image) {
        $images[]= wp_get_attachment_url( $image->ID );
    }
foreach($images as $item){

   /// any function not yet decided
}
echo($item);

我在$ item中获取图片网址 我想更改图像属性,并在原始位置用我的操作图像替换原始图像。

1 个答案:

答案 0 :(得分:0)

使用portfolio slideshow ...作为一个(但这个得到高评价并且备受尊重)