こんにちは、よろしくお願いします。投稿の親に添付された画像を取得するこのコードがあり、それらを左右の矢印付きのスライダーに表示したいと考えています。問題は、$imagenes をエコーすると、私のコードは 3 つの URL を 1 つの文字列として提供し、文字列を分割して独立した文字列を作成し、それを JavaScript に割り当てて動作させることができるようにする必要があるということです。
私はすでにexplode、split、str_splitを使用していますが、取得できませんでした。クリックされたときにアクションを実行するために、すべての URL を変数に入れたいだけです。どんな助けでも大歓迎です。
これが私のコードです:
<?php
require_once("../../../../../wp-load.php");
$id = $_GET['id'];
$args = array('p' => $id, 'post_type' => 'myportfoliotype');
$query = new WP_Query($args);
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$texto = get_the_content();
$args = array( 'post_type' => 'attachment', 'posts_per_page' => -1, 'post_status' =>'any', 'post_parent' => $post->ID );
$attachments = get_posts($args);
if ($attachments) {
foreach ( $attachments as $attachment ) {
//echo $attachment->ID."<br>";
$imagenes = wp_get_attachment_image_src($attachment->ID,'fullsize',false,'');
$imagenes = $imagenes[0];
}
}
}
}
wp_reset_postdata();
?>