我想就以下问题提出一些建议:
通过编辑器编辑具有2x列的页面的最佳方法是什么?
答案 0 :(得分:1)
您可以使用Custom Field Template进行尝试。 对于第一列,您可以使用Wordpress的默认编辑器,对于第二列,您可以创建一个自定义字段,其中插件显示具有TinyMCE支持的textarea。
“自定义字段模板”的可用代码,用于在自定义字段区域中显示textarea:
[column_2]
type = textarea
rows = 4
cols = 40
tinyMCE = true
htmlEditor = true
mediaButton = true
(您必须在插件的wp-admin面板中输入该代码)。
要从模板文件中的自定义字段获取数据,您可以使用
get_post_custom_values
功能:
//returns an array
$colum_2_content = get_post_custom_values("column_2", $post_id);
echo $colum_2_content [0];