Changeset 23265 for trunk/wp-includes/default-constants.php
- Timestamp:
- 01/04/2013 10:13:51 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-constants.php
r22531 r23265 13 13 * @since 3.0.0 14 14 */ 15 function wp_initial_constants( 15 function wp_initial_constants() { 16 16 global $blog_id; 17 17 … … 90 90 * @since 3.0.0 91 91 */ 92 function wp_plugin_directory_constants( 92 function wp_plugin_directory_constants() { 93 93 if ( !defined('WP_CONTENT_URL') ) 94 94 define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up … … 151 151 * @since 3.0.0 152 152 */ 153 function wp_cookie_constants( 153 function wp_cookie_constants() { 154 154 /** 155 155 * Used to guarantee unique hash cookies … … 236 236 * @since 3.0.0 237 237 */ 238 function wp_ssl_constants( 238 function wp_ssl_constants() { 239 239 /** 240 240 * @since 2.6.0 … … 257 257 * @since 3.0.0 258 258 */ 259 function wp_functionality_constants( 259 function wp_functionality_constants() { 260 260 /** 261 261 * @since 2.5.0 … … 285 285 * @since 3.0.0 286 286 */ 287 function wp_templating_constants( 287 function wp_templating_constants() { 288 288 /** 289 289 * Filesystem path to the current active template directory
Note: See TracChangeset
for help on using the changeset viewer.