wp_get_theme_preview_path() – Filters the blog option to return the path for the previewed theme.

You appear to be a bot. Output may be restricted

Description

Filters the blog option to return the path for the previewed theme.

Usage

$string = wp_get_theme_preview_path( $current_stylesheet );

Parameters

$current_stylesheet
( string ) optional – The current theme's stylesheet or template path.

Returns

string The previewed theme's stylesheet or template path.

Source

File name: wordpress/wp-includes/theme-previews.php
Lines:

1 to 19 of 19
function wp_get_theme_preview_path( $current_stylesheet = null ) {
  if ( ! current_user_can( 'switch_themes' ) ) {
    return $current_stylesheet;
  }

  $preview_stylesheet = ! empty( $_GET['wp_theme_preview'] ) ? sanitize_text_field( wp_unslash( $_GET['wp_theme_preview'] ) ) : null;
  $wp_theme           = wp_get_theme( $preview_stylesheet );
  if ( ! is_wp_error( $wp_theme->errors() ) ) {
    if ( current_filter() === 'template' ) {
      $theme_path = $wp_theme->get_template();
    } else {
      $theme_path = $wp_theme->get_stylesheet();
    }

    return sanitize_text_field( $theme_path );
  }

  return $current_stylesheet;
}
 

 View on GitHub View on Trac