function display_client_logos() {
// Başlangıç HTML’i
$output = ‘
‘;
$output .= ‘
Our Clients
‘;
$output .= ‘
‘;
// Logoların bulunduğu alan (bu bölümü kendi logolarınızla düzenleyebilirsiniz)
$logos = [
[
'url' => 'https://example.com/logo1.png',
'alt' => 'Firma 1',
'link' => '#'
],
[
'url' => 'https://example.com/logo2.png',
'alt' => 'Firma 2',
'link' => '#'
],
[
'url' => 'https://example.com/logo3.png',
'alt' => 'Firma 3',
'link' => '#'
],
[
'url' => 'https://example.com/logo4.png',
'alt' => 'Firma 4',
'link' => '#'
],
];
// Logoları döngüye sokarak HTML oluşturuyoruz
foreach ($logos as $logo) {
$output .= '<a href="' . esc_url($logo['link']) . '" class="logo-item" target="_blank">';
$output .= '<img src="' . esc_url($logo['url']) . '" alt="' . esc_attr($logo['alt']) . '">';
$output .= '</a>';
}
// Kapanış HTML'i
$output .= '</div>';
$output .= '</div>';
return $output;
}
// Shortcode Kayıt
add_shortcode(‘client_logos’, ‘display_client_logos’);