File: /var/www/compelsupport/wp-content/themes/compel/functions.php
<?php
define( 'THEMEROOT', get_stylesheet_directory_uri() . "/" );
define( 'FILEROOT', dirname(__DIR__) . '/' . get_option('stylesheet') );
add_action( 'wp_enqueue_scripts', function(){
//wp_register_script( 'tokic-vendor', THEMEROOT . 'frontend/js/vendor/vendor.bundle.js' );
//wp_register_script( 'tokic-core', THEMEROOT . 'frontend/js/core.bundle.js?v=12' );
//$translation_array = array('templateUrl' => get_template_directory_uri());
//wp_localize_script('tokic-core', 'object_name', $translation_array);
});
/* Custom image sizes */
add_action('init', function(){
add_theme_support( 'post-thumbnails' );
add_image_size( 'post_image', 1200, 400, true );
add_image_size( 'news_thumb', 600, 200, true );
});
/* Add responsive container to embeds
/* ------------------------------------ */
function alx_embed_html( $html ) {
return '<div class="video-container">' . $html . '</div>';
}
add_filter( 'embed_oembed_html', 'alx_embed_html', 10, 3 );
add_filter( 'video_embed_html', 'alx_embed_html' ); // Jetpack
?>