如何在Flatome中为自定义POST类型启用UX Builder

时间:2020-08-31 作者:Nadia

我正在使用flatsome主题并使用flatsome ux builder设计第一个页面,我创建了post\\u type name产品。我想在第一页显示自定义post\\u类型的滑块。有可能吗?有人知道怎么做吗?我无法添加短代码,因为ux生成器似乎无法正确使用短代码!

1 个回复
SO网友:rudtek

谷歌是你的朋友。。。

从ux主题网站:https://docs.uxthemes.com/article/221-how-to-enable-ux-builder-for-custom-post-types

/**
 * Code goes in theme functions.php
 */
add_action( \'init\', function () {
    if ( function_exists( \'add_ux_builder_post_type\' ) ) {
        add_ux_builder_post_type( \'custom_post_type\' );
    }
} );
您需要将“custom\\u post\\u type”更改为实际的帖子类型。

相关推荐