initial commit

This commit is contained in:
2024-04-29 13:12:44 +05:45
commit 34887303c5
19300 changed files with 5268802 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?php
/**
* Silence is golden.
*
* @package Redux Framework
*/
echo null;

View File

@@ -0,0 +1,42 @@
<?php
/**
* ReduxTemplates - Canvas / Theme Override
*
* @since 4.0.0
* @package redux-framework
*/
defined( 'ABSPATH' ) || exit;
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="profile" href="https://gmpg.org/xfn/11"/>
<?php if ( ! current_theme_supports( 'title-tag' ) ) : ?>
<title><?php echo esc_html( wp_get_document_title() ); ?></title>
<?php endif; ?>
<?php
wp_head();
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo '<style id="redux-template-overrides">' . ReduxTemplates\Template_Overrides::get_overrides() . '</style>';
?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php
while ( have_posts() ) :
the_post();
the_content();
// If comments are open, or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
<?php endwhile; ?>
<?php wp_footer(); ?>
</body>
</html>

View File

@@ -0,0 +1,26 @@
<?php
/**
* ReduxTemplates - Full Width / Contained
*
* @since 4.0.0
* @package redux-framework
*/
defined( 'ABSPATH' ) || exit;
get_header();
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo '<style id="redux-template-overrides">' . ReduxTemplates\Template_Overrides::get_overrides() . '</style>';
while ( have_posts() ) :
the_post();
the_content();
// If comments are open, or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
get_footer();

View File

@@ -0,0 +1,26 @@
<?php
/**
* ReduxTemplates - Full Width / Stretched
*
* @since 4.0.0
* @package redux-framework
*/
defined( 'ABSPATH' ) || exit;
get_header();
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo '<style id="redux-template-overrides">' . ReduxTemplates\Template_Overrides::get_overrides() . '</style>';
while ( have_posts() ) :
the_post();
the_content();
// If comments are open, or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
get_footer();