您所追求的功能被调用unfiltered_html
. 一些选项:
修改author 主题中的功能functions.php
. 这将保存在数据库中,因此您可以访问页面,确保其正常工作,然后将其从数据库中删除functions.php
文件更好的选择是在主题激活时运行它。看见this page on WP Codex 对于选项:
function add_theme_caps() {
// gets the author role
$role = get_role( \'author\' );
// This only works, because it accesses the class instance.
// would allow the author to edit others\' posts for current theme only
$role->add_cap( \'unfiltered_html\' );
}
add_action( \'admin_init\', \'add_theme_caps\');
使用允许您使用UI修改的插件,如
User Role Editor.