Form içinde PHP izin

1 Cevap php

Ben insanlar Wordpress Admin Paneli bir textarea içinde PHP kullanmak için izin istiyorum

<textarea cols="70" rows="5" name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" type="<?php echo $value['type']; ?>" />
    <?php echo stripslashes(get_settings($value['id'])); ?>
</textarea>

HTML kullanımını sağlayacak, ancak PHP değil ...

UPDATE: Let me clarify. I can enter PHP in the form but it wont print on the front-end

 <p><?php echo stripslashes($tt_vanity_box); ?></p>

Peki bu bir wordpress tema altbilgi için var ... "makyaj" olarak nitelendirdi. Kullanıcı telif hakkı bilgileri vb Örnek nerede girebilirsiniz:

&copy; <?php echo date('Y'); ?> <a href="http://mysite.com">My Company</a>

1 Cevap

Ben bunu anladım. Seçenekleri paneli (textarea PHP ile) kaydedildikten sonra ön uç tamponlu gerekiyor (http://php.net/manual/en/function.ob-start.php)

	<?php $val = stripslashes($tt_vanity_box);
		ob_start();
		eval("?>$val<?php ");
		$val = ob_get_contents();
		ob_end_clean();
		echo $val; 
	?>