Bật UX Builder cho Custom post type trên theme Flatsome
Để bật UX Builder cho các loại bài đăng tùy chỉnh, hãy thêm phần này vào tệp function.php của bạn:
Đảm bảo rằng mẫu loại bài đăng tùy chỉnh đang sử dụng đúng cách the_content(); chức năng.
<?php // Do not include this if already open! /** * 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' ); } } );