我设置了一个管理设置菜单,我想以短代码的形式输出字段。
我从教程中学习输出字段的方法是:
<?php $input_examples = get_option(\'sandbox_theme_input_examples\'); ?>
<?php echo sanitize_text_field( $input_examples[ \'textarea_example\' ] ); ?>
但将其放入短代码中不起作用:
function shortcode()
{
return \'<?php $input_examples = get_option(\'sandbox_theme_input_examples\'); ?>\';
return \'<?php echo sanitize_text_field( $input_examples[ \'textarea_example\' ] ); ?>\';
}
add_shortcode(\'shortcode\', \'shortcode\');
我猜有一种特殊的方法可以将php代码放入我不理解的短代码中?
我已经找遍了,找不到解决这个问题的办法。