Making WordPress.org


Ignore:
Timestamp:
01/16/2015 12:14:43 AM (9 years ago)
Author:
obenland
Message:

WP.org Themes: Use home_url() to account for subfolder MS installs.

See #745.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php

    r1146 r1147  
    1414 * as indicating support for post thumbnails.
    1515 */
    16 
     16define('WPORGPATH', 'https://wordpress.org/');
    1717function wporg_themes_setup() {
    1818    global $themes_allowedtags, $theme_field_defaults;
     
    8282
    8383    if ( ! is_singular( 'page' ) ) {
    84         wp_enqueue_script( 'theme', self_admin_url( 'js/theme.js' ), array( 'wp-backbone' ) );
    85         wp_enqueue_script( 'wporg-theme', get_template_directory_uri() . '/js/theme.js', array( 'theme' ) );
     84        wp_enqueue_script( 'theme', self_admin_url( 'js/theme.js' ), array( 'wp-backbone' ), false, true );
     85        wp_enqueue_script( 'wporg-theme', get_template_directory_uri() . '/js/theme.js', array( 'theme' ), false, true );
    8686
    8787        wp_localize_script( 'theme', '_wpThemeSettings', array(
     
    9292                'canInstall' => false,
    9393                'installURI' => null,
    94                 'adminUrl'   => parse_url( home_url(), PHP_URL_PATH ),
     94                'adminUrl'   => trailingslashit( parse_url( home_url(), PHP_URL_PATH ) ),
    9595            ),
    9696            'l10n' => array(
     
    240240    get_template_part( 'view-templates/theme-single' );
    241241}
    242 add_action( 'wp_head', 'wporg_themes_view_templates' );
     242add_action( 'wp_footer', 'wporg_themes_view_templates' );
Note: See TracChangeset for help on using the changeset viewer.