/**
* Регистрация скриптов и стилей
* @see https://developer.wordpress.org/reference/functions/wp_register_script/
* @see https://developer.wordpress.org/reference/functions/wp_register_style/
*/
function my_assets() {
wp_register_script( 'my-script', 'script_link' );
wp_register_style( 'my-style', 'style_link');
}
add_action( 'wp_enqueue_scripts', 'my_assets' );
/**
* Шорткод с нужным содержимым
* @see https://developer.wordpress.org/reference/functions/add_shortcode/
*/
function my_shortcode() {
/**
* Вызов скриптов и стилей которые зарегистрировали раньше
* @see https://developer.wordpress.org/reference/functions/wp_enqueue_script/
* @see https://developer.wordpress.org/reference/functions/wp_enqueue_style/
*
*/
wp_enqueue_script( 'my-script' );
wp_enqueue_style( 'my-style' );
/////////
// СВОЙ КОД
////////
}
add_shortcode( 'my_custom_code', 'my_shortcode' );
В контент нужной страницы вставляете
[my_custom_code]