I wasn’t able to get wp-cli going so I installed a plugin called “Pods – Custom Content Types and Fields” — that plugin listed the handles. For example, I was able to list the “Block Library” and it came back as “bg_block” — similarly the one I am targeting is listed as “cpt_services”
Random thought: WP Bakery is able to be an ‘editor’ for this cpt — would that imply that cpt already supports ‘editor’ ?
Also, that new Pods plugin was available as well when editing a post within Services.
——
I also dug around the Theme Files and found:
$post_type == TRX_ADDONS_CPT_SERVICES_PT
I’ve updated the functions.php in the child theme – still no luck — here is the full code of that file (in case something else is missing):
<?php
/**
* Add excerpt support to pages
*/
function add_cpt_services_support() {
add_post_type_support( 'TRX_ADDONS_CPT_SERVICES_PT', 'editor');
}
add_action('init', 'add_cpt_services_support', 99);
/**
* Child-Theme functions and definitions
*/
function my_theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );