ご返信ありがとうございます。
下記のように記載しておりますが、こちらでお分かりになりますでしょうか?
==
add_action(‘init’, ‘my_welcart_template’, 9);
function my_welcart_template(){
add_filter(‘usces_template_path_single_item’, ‘usces_template_path_single_item’);
add_filter(‘usces_template_path_member_form’, ‘usces_template_path_member_form’);
}
function usces_template_path_single_item( $path ){
$path = get_stylesheet_directory() . ‘/welcart/single_item.php’;
return $path;
}
function usces_template_path_member_form( $path ){
$path = get_stylesheet_directory() . ‘/welcart/member/member_form.php’;
return $path;
}