Создаю метод:
public static function loader()
{
add_action( 'init', self::create_post() );
add_action( 'init', self::create_tax() );
add_filter( 'rwmb_meta_boxes', self::add_metabox());
add_filter( 'template_include', self::template('order'), 1 );
add_filter( 'template_include', self::template('cart'), 1 );
}
И метод подключения шаблонов:
public static function template($page){
if ( is_page() == $page ) {
$template_path = plugin_dir_path( __FILE__ ) . 'templates/'.$page.'.php';
}
return $template_path;
}
Реакции ноль. Перепробовал уже все варианты...Что не правильно?