ACF ile oluşturduğum özel alanı Elementor Widget'ine eklemeye çalışıyorum, <!-- Marka --> kısmına bir göz atabilir misiniz? ACF'yi Elementor Widget'lerinde kullanamıyor muyuz, yoksa bir şeyi mi atlıyorum?
<?php
class Elementor_Arac_Vitrin_Widget extends \Elementor\Widget_Base {
public function get_name() {
return 'name_arac_vitrin_widget';
}
public function get_title() {
return esc_html__( 'Araç Vitrin', 'elementor-addon' );
}
public function get_icon() {
return 'eicon-code';
}
public function get_categories() {
return [ 'basic' ];
}
public function get_keywords() {
return [ 'hello', 'world' ];
}
protected function render() {
?>
<table>
<tbody><!-- Marka -->
<tr>
<th><span style="font-weight: 600;">Marka</span></th>
<td style="text-align: right; font-size: 16px;">
<?php if(get_field('sol_vitrin_arac_markasi')): ?>
<?php the_field('sol_vitrin_arac_markasi'); ?>
<?php endif; ?>
</td>
</tr>
<!-- Seri -->
<tr>
<th><span style="font-weight: 600;">Seri</span></th>
<td style="text-align: right; font-size: 16px;">Linea</td>
</tr>
<!-- Model -->
<tr>
<th><span style="font-weight: 600;">Model</span></th>
<td style="text-align: right; font-size: 16px;">1.4 Turbo Emotion Plus</td>
</tr>
<!-- Yıl -->
<tr>
<th><span style="font-weight: 600;">Yıl</span></th>
<td style="text-align: right; font-size: 16px;">2010</td>
</tr>
<!-- KM -->
<tr>
<th><span style="font-weight: 600;">KM</span></th>
<td style="text-align: right; font-size: 16px;">49.500</td>
</tr>
</tbody>
</table>
<?php
}
}