Random WordPress Function

Learn about a new WordPress function every day!


Function Signature:

get_intermediate_image_sizes

Function Description:

Gets the available intermediate image size names.

Function Examples:

⚠️ Examples below are generated with GPT-3 once every hour. Do not take them too seriously.
Consider them as some extra input in your learning process - reason about them. Will it work? What could fail?
// Example 1: Retrieve all intermediate image sizes registered in WordPress
$intermediate_sizes = get_intermediate_image_sizes();
foreach ($intermediate_sizes as $size) {
    echo $size . '
'; }
// Example 2: Check if a specific image size exists before using it
$size = 'medium';
$intermediate_sizes = get_intermediate_image_sizes();
if (in_array($size, $intermediate_sizes)) {
    // Use the image size
    echo 'Image size ' . $size . ' exists.';
} else {
    // Handle the case when the image size doesn't exist
    echo 'Image size ' . $size . ' does not exist.';
}
// Example 3: Get the URL of all images with intermediate sizes for a specific attachment
$attachment_id = 123;
$intermediate_sizes = get_intermediate_image_sizes();
foreach ($intermediate_sizes as $size) {
    $image_url = wp_get_attachment_image_url($attachment_id, $size);
    echo $size . ': ' . $image_url . '
'; }