Hallo,
hoffe ihr könnte mit weiterhelfen. Ich möchte PHP Code innerhalb des regulären Editor Inhalts Feld einfügen. Am liebsten ohne Plugin.
Ich habe dafür folgendes in meiner functions.php hinzugefügt
Allerdings funktioniert es so nicht auf Grund der doppelten Hochkommas (') um die Variablen innerhalb der $content = ''; Anweisung.
Nun, wie passe ich den Code an damit es funktioniert?
Danke für eure Hilfe
hoffe ihr könnte mit weiterhelfen. Ich möchte PHP Code innerhalb des regulären Editor Inhalts Feld einfügen. Am liebsten ohne Plugin.
Ich habe dafür folgendes in meiner functions.php hinzugefügt
PHP-Code:
add_filter( 'default_content', 'my_editor_content' );
function my_editor_content( $content ) {
$content = '
<!-- Online Shops -->
<div class="page_container">
<table class="qlabs_grid_container">
<!-- TABLE HEADER -->
<!-- TABLE BODY -->
<tbody class="data_container">
<!-- SUBHEADER -->
<tr class="subheader_row">
<td class="subheader_cell">Anbieter</td>
<td class="subheader_cell">Release</td>
<td class="subheader_cell">Webseite</td>
</tr>
<!-- / -->
<?php while( have_rows('affiliate_table') ): the_row();
// Table vars
$aff_logo = get_sub_field('affiliate_logo');
$aff_release_date = get_sub_field('release_date');
$aff_url = get_sub_field('affiliate_url'); ?>
<!-- ROW -->
<tr class="data_odd">
<td class="data_cell"><img src="<?php echo $aff_logo['url']; ?>" alt="<?php echo $aff_logo['alt'] ?>"/></td>
<td class="data_cell"><?php echo $aff_release_date; ?></td>
<td class="data_cell"><div style="margin-left: 5px;" class="grid_button"><a href="<?php echo $aff_url; ?>" target="_blank">Shop</a></div></td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
</div>
<!-- /Online Shops -->';
return $content;
}
Nun, wie passe ich den Code an damit es funktioniert?
Danke für eure Hilfe
Kommentar