HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
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


?>