<div class="project_outer">
<div class="project_outer_image_wrap">
$cmsmasters_project_link_url
$cmsmasters_project_link_redirect
$cmsmasters_project_link_target
function register_styles_scripts() {
//стили
wp_register_style('style', get_template_directory_uri() .
'/style.css');
wp_enqueue_style('style');
//скрипты
wp_register_script('mainJS', get_template_directory_uri() .
'/js/main.js');
wp_enqueue_script('mainJS');
if(is_page(12)) {
wp_register_script('pageJS', get_template_directory_uri() .
'/js/page.js');
wp_enqueue_script('pageJS');
}
}
add_action('wp_enqueue_scripts', 'register_styles_scripts');
https://github.com/reduxframework/redux-framework/...