Tiếp tục các thủ thuật xây dựng, thiết kế Website bằng WordPress, dưới đây sẽ là mẫu code tự tạo nhằm tùy chỉnh các loại bài đăng (custom post types) (customPostType) trên Child Themes WordPress (trình tạo trang Flatsome 3 page builder).
Đây chính là block customPostType trong trình soạn thảo trực quan UX Builder của Flatsome.
flatsome3-custom-post-type-support.php
Để kích hoạt tính năng UX Builder trong Custom post types, hãy thêm đoạn code dưới đây vào file function.php trong Theme File Editor giao diện mà bạn đang sử dụ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' ); } } );