2

出于某种原因,我的子主题模板未被识别。

我相信我遵循了正确的程序(并检查了缓存等)

/wp-content/themes/divi-child/includes/builder/module/Blog.php

应该更换

/wp-content/themes/Divi/includes/builder/module/Blog.php

(相同的路径和相同的文件略有更新)

无法识别子主题模块模板(更改子主题模板无效)

我已经测试过编辑主文件,每次都能立即工作。

非常感谢任何建议。

干杯


编辑

以下应该根据 Divi 工作,但是当我尝试时它会破坏网站。

显然,仅仅将模块复制到子主题中是不够的。该文件需要复制。然后将文件复制到 child-theme/custom-modules/Blog.php。将以下代码添加到 functions.php 文件的底部后:

function divi_custom_blog_module() {
get_template_part( '/custom-modules/Blog' );
$myblog = new custom_ET_Builder_Module_Blog();
remove_shortcode( 'et_pb_blog' );
add_shortcode( 'et_pb_blog', array( $myblog, '_render' ) );
}
add_action( 'et_builder_ready', 'divi_custom_blog_module' );
4

2 回答 2

3

还有一些其他步骤https://intercom.help/elegantthemes/en/articles/4532734-moving-blog-module-in-child-theme

  1. 在子主题文件夹中新建一个文件夹,例如包含文件夹。

  2. 现在将 Divi/includes/builder/module/Blog.php 文件从父主题复制到 child-theme/includes/ 文件夹中。

  3. 打开您的子主题的 Blog.php 文件并替换此行(在最顶部):

    require_once 'helpers/Overlay.php';
        
    class ET_Builder_Module_Blog extends ET_Builder_Module_Type_PostBased {

和:

    get_template_part( '/includes/builder/module/helpers/Overlay.php' );
    
    class custom_ET_Builder_Module_Blog extends ET_Builder_Module_Type_PostBased {

替换: $this->vb_support = 'on'; $this->vb_support = 'off';

从底部删除这一行:new ET_Builder_Module_Blog();

  1. 最后,将以下代码添加到子主题文件夹中的 functions.php 文件中:

/*================================================

#Load custom Blog  Module

================================================*/

function divi_custom_blog_module() {

    get_template_part( '/includes/Blog' );

    $myblog = new custom_ET_Builder_Module_Blog();

    remove_shortcode( 'et_pb_blog' );

    add_shortcode( 'et_pb_blog', array( $myblog, '_render' ) );

}

add_action( 'et_builder_ready', 'divi_custom_blog_module' );

于 2021-04-07T20:42:18.600 回答
0

我以前遇到过类似的问题。我认为-也许博客模板被“父亲主题”文件夹中的另一个文件调用,例如:

$url = dirname(__FILE__)."/includes/builder/module/Blog.php";

这将导致问题。解决这个问题有两种方法:

#1:查找并编辑名为博客模板的文件(不推荐)

#2:找到并复制将博客模板调用到您的子主题的文件(您可以先尝试使用 index.php、content.php 或 single.php)(推荐)

于 2020-09-16T04:09:09.080 回答