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 and display all intermediate image sizes for a specific image
$image_sizes = get_intermediate_image_sizes();
foreach ($image_sizes as $size) {
    echo $size . '
'; }
// Example 2: Check if a specific image size exists before using it
$image_sizes = get_intermediate_image_sizes();
$desired_size = 'medium_large';
if (in_array($desired_size, $image_sizes)) {
    // Use the desired image size
} else {
    // Handle the case where the desired size is not available
}
// Example 3: Get the URL of a specific image size for a given attachment ID
$attachment_id = 123;
$image_sizes = get_intermediate_image_sizes();
$desired_size = 'large';
$image_url = wp_get_attachment_image_url($attachment_id, $desired_size);
echo $image_url;