admin管理员组文章数量:1395329
Good day, I'm currently working with a new plugin which creates a custom post type for different rooms and I'm trying to create a custom template using Toolset, but other content is automatically prepended to my layouts on Toolset. I cannot see any extra code in toolset.
By default the plugin shows two pieces on the ROOM page. 1. Join button and 2. Recordings List
Toolset Homepage
single-bbb-room.php
even though creating a single-bbb-room.php works for removing the sidebar, author and comments, it seems the plugin is automatically adding shortcodes to the page contents. I cannot see how it would be doing that.
** ANY HELP WOULD BE GREATLY APPRECIATED. **
Good day, I'm currently working with a new plugin which creates a custom post type for different rooms and I'm trying to create a custom template using Toolset, but other content is automatically prepended to my layouts on Toolset. I cannot see any extra code in toolset.
By default the plugin shows two pieces on the ROOM page. 1. Join button and 2. Recordings List
Toolset Homepage
single-bbb-room.php
even though creating a single-bbb-room.php works for removing the sidebar, author and comments, it seems the plugin is automatically adding shortcodes to the page contents. I cannot see how it would be doing that.
https://github/blindsidenetworks/wordpress-plugin_bigbluebutton
** ANY HELP WOULD BE GREATLY APPRECIATED. **
Share Improve this question asked Apr 4, 2020 at 6:24 Cullen CarstensCullen Carstens 112 bronze badges1 Answer
Reset to default 0The plugin is using a filter on the_content in line 300 of /includes/class-bigbluebutton.php
// Display join room form.
$this->loader->add_filter( 'the_content', $plugin_public, 'bbb_room_content' );
So you can probably add the following to your functions.php:
remove_filter( 'the_content', 'bbb_room_content' );
本文标签: custom post typesMaking a Template for a CPT created by a plugin
版权声明:本文标题:custom post types - Making a Template for a CPT created by a plugin 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744599054a2614956.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论