Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* display WordPress / PHP path and url constants */
- add_shortcode( 'wp_display_constants', 'wp_display_constants_shortcode_handler' );
- function wp_display_constants_shortcode_handler() {
- return "<pre>"."
- Constant WP_HOME - ".WP_HOME."
- Constant WP_SITEURL - ".WP_SITEURL."
- Constant WPINC - ".WPINC."
- Constant WP_CONTENT_DIR - ".WP_CONTENT_DIR."
- Constant WP_CONTENT_URL - ".WP_CONTENT_URL."
- Constant WP_PLUGIN_DIR - ".WP_PLUGIN_DIR."
- Constant WP_PLUGIN_URL - ".WP_PLUGIN_URL."
- Constant WPMU_PLUGIN_DIR - ".WPMU_PLUGIN_URL."
- Constant WPMU_PLUGIN_URL - ".WPMU_PLUGIN_URL."
- Constant ABSPATH - ".ABSPATH."
- Constant __FILE__ - ".__FILE__."
- Constant __DIR__ - ".__DIR__."
- </pre>";
- }
Advertisement