PHP code example of real-coder-pty-ltd / do-spaces-sync

1. Go to this page and download the library: Download real-coder-pty-ltd/do-spaces-sync library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

real-coder-pty-ltd / do-spaces-sync example snippets


 echo get_the_post_thumbnail($property->post->ID, 'medium'); 

$attachments = get_attached_media('image', $property->post->ID);
$media = [];

// Get the attachment IDs.
foreach ($attachments as $attachment) {
	$media[] = $attachment->ID;
}

foreach($attachments as $attachment) {
	echo wp_get_attachment_image( $attachment->ID, $size, false, ['class' => 'gallery-image'] );
}