为插件创建的CPT制作模板

时间:2020-04-04 作者:Cullen Carstens

您好,我目前正在使用一个新插件,该插件为不同的房间创建自定义帖子类型,我正在尝试使用工具集创建自定义模板,但其他内容会自动添加到工具集上的布局中。我在工具集中看不到任何额外的代码。

默认情况下,插件在房间页面上显示两个部分。1、连接按钮和2。录制列表

Toolset Homepage

单人bbb房。php

即使创建single-bbb-room.php 用于删除侧边栏、作者和注释,插件似乎会自动向页面内容添加短代码。我看不出它会怎么做。

https://github.com/blindsidenetworks/wordpress-plugin_bigbluebutton

** ANY HELP WOULD BE GREATLY APPRECIATED. **

1 个回复
SO网友:TomC

该插件在/includes/class bigbluebutton的第300行的\\u内容上使用过滤器。php

   // Display join room form.
            $this->loader->add_filter( \'the_content\', $plugin_public, \'bbb_room_content\' );
因此,您可以向函数中添加以下内容。php:

remove_filter( \'the_content\', \'bbb_room_content\' );

相关推荐

What does this shortcode do?

function my_shortcode($atts, $content = null){ extract(shortcode_atts(array(\"type\" => \"warrning\"), $atts)); return \".$content.\"; } add_shortcode(\"warrning_dialog\", \"my_shortcode\"); 我知道它会创建短代码[warning\\u dialo