如何在二十七个主题的子主题中集成选项树最新版本2.6.0主题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在二十七个主题的子主题中集成选项树最新版本2.6.0主题相关的知识,希望对你有一定的参考价值。
我正在尝试在我的二十七岁的孩子主题中集成选项树插件,但它不起作用。
bellow是在子主题中添加选项树后的代码。
// Integrate OptionTree
add_filter( 'OT_CHILD_THEME_MODE', '__return_true' );
/* Theme Options */
require_once( get_template_directory() . '/option-tree/ot-loader.php' );
// Hide Documentation Page
add_filter( 'ot_show_pages', '__return_false' );
add_filter( 'ot_show_new_layout', '__return_false' );
答案
将option-tree目录放在主题的根目录中。例如,服务器路径为/ wp-content / themes / theme-name / option-tree /。将以下代码添加到functions.php的开头。
/**
* Required: set 'ot_theme_mode' filter to true.
*/
add_filter( 'ot_theme_mode', '__return_true' );
/**
* Required: include OptionTree.
*/
require( trailingslashit( get_template_directory() ) . 'option-tree/ot-loader.php' );
以上是关于如何在二十七个主题的子主题中集成选项树最新版本2.6.0主题的主要内容,如果未能解决你的问题,请参考以下文章
text 一个简单的功能来控制WPColt.com的二十七个主题页面部分的数量
安装了新的 wordpress 5.8 但为啥 Jquery 库不显示在二十一个 wordpress 主题的前端?
二十个子主题 - 修改主题宽度(940px 到 1000px)