// Testimonial box shortcode
function testimonial_box_shortcode($atts, $content = null) {
$atts = shortcode_atts(
array(
'name' => 'Anonymous', // Default name
'image' => '', // Optional image URL
),
$atts,
'testimonial_box'
);
$image = $atts['image'] ? '
' : '';
return '
' . $image . '
“' . $content . '”
- ' . esc_html($atts['name']) . '
';
}
add_shortcode('testimonial_box', 'testimonial_box_shortcode');