从“页面”中将图像添加到wordpress中的html

时间:2016-08-05 16:24:08

标签: php wordpress

我正在wordpress上创建一个新页面并使用php代码添加图片。

这是我到目前为止的代码,它给了我一个数组中的src url。但是我认为这给了我画廊中的所有图像。有没有办法找到页面上的图像,然后将这些图像添加到页面。请参阅下面的我当前的代码。

enter image description here

<?php

$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 ) {
    echo wp_get_attachment_url( $image->ID );
}

?>

1 个答案:

答案 0 :(得分:0)

试试这个

echo "<img src='".wp_get_attachment_url( $image->ID )."' />";