first commit without licensingg

This commit is contained in:
kbe
2025-08-21 14:40:43 +02:00
commit fa8d4e58a4
130 changed files with 82163 additions and 0 deletions

163
functions.php Normal file
View File

@@ -0,0 +1,163 @@
<?php
/**
* Revision functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Revision
*/
if ( ! class_exists( 'Revision' ) ) {
/**
* Main Core Class
*/
class Revision {
/**
* __construct
*
* This function will initialize the initialize
*/
public function __construct() {
$this->init();
$this->theme_files();
}
/**
* Init
*/
public function init() {
add_action( 'after_setup_theme', array( $this, 'theme_setup' ) );
}
/**
* Theme support
*/
public function theme_support() {
add_theme_support( 'wp-block-styles' );
add_theme_support( 'custom-logo' );
add_theme_support( 'custom-header' );
add_theme_support( 'custom-background' );
register_block_pattern();
add_editor_style();
}
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
public function theme_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Revision, use a find and replace
* to change 'revision' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'revision', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus(
array(
'primary' => esc_html__( 'Primary', 'revision' ),
'mobile' => esc_html__( 'Mobile', 'revision' ),
'footer' => esc_html__( 'Footer', 'revision' ),
)
);
/*
* Switch default core markup for search form, comment form, comments, etc.
* to output valid HTML5.
*/
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'script',
'style',
)
);
// Add support for responsive embeds.
add_theme_support( 'responsive-embeds' );
// Supported Formats.
add_theme_support( 'post-formats', array( 'gallery', 'video', 'audio' ) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
// Add support for full and wide align images.
add_theme_support( 'align-wide' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
// Register custom thumbnail sizes.
add_image_size( 'csco-thumbnail', 400, 225, true );
add_image_size( 'csco-thumbnail-2x', 800, 450, true );
add_image_size( 'csco-thumbnail-uncropped', 400, 0, false );
add_image_size( 'csco-thumbnail-uncropped-2x', 800, 0, false );
add_image_size( 'csco-medium', 832, 468, true );
add_image_size( 'csco-medium-2x', 1664, 936, true );
add_image_size( 'csco-medium-uncropped', 832, 0, false );
add_image_size( 'csco-medium-uncropped-2x', 1664, 0, false );
add_image_size( 'csco-large', 1248, 702, true );
add_image_size( 'csco-large-2x', 2496, 1404, true );
add_image_size( 'csco-large-uncropped', 1248, 0, true );
add_image_size( 'csco-large-uncropped-2x', 2496, 0, true );
}
/**
* Include theme files
*/
public function theme_files() {
require_once get_theme_file_path( '/inc/deprecated.php' );
require_once get_theme_file_path( '/inc/theme-setup.php' );
require_once get_theme_file_path( '/core/theme-dashboard/class-theme-dashboard.php' );
require_once get_theme_file_path( '/core/theme-demos/class-theme-demos.php' );
require_once get_theme_file_path( '/core/customizer/class-customizer.php' );
require_once get_theme_file_path( '/inc/assets.php' );
require_once get_theme_file_path( '/inc/widgets-init.php' );
require_once get_theme_file_path( '/inc/theme-functions.php' );
require_once get_theme_file_path( '/inc/theme-demos.php' );
require_once get_theme_file_path( '/inc/theme-mods.php' );
require_once get_theme_file_path( '/inc/filters.php' );
require_once get_theme_file_path( '/inc/gutenberg.php' );
require_once get_theme_file_path( '/inc/actions.php' );
require_once get_theme_file_path( '/inc/partials.php' );
require_once get_theme_file_path( '/inc/theme-tags.php' );
require_once get_theme_file_path( '/inc/post-meta.php' );
require_once get_theme_file_path( '/inc/load-more.php' );
require_once get_theme_file_path( '/inc/custom-content.php' );
require_once get_theme_file_path( '/inc/categories.php' );
require_once get_theme_file_path( '/inc/load-nextpost.php' );
}
}
// Initialize.
new Revision();
}