wpgenie

display WordPress / PHP path and url constants

Nov 5th, 2025
1,422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.70 KB | None | 0 0
  1. /* display WordPress / PHP path and url constants */
  2.  
  3. add_shortcode( 'wp_display_constants', 'wp_display_constants_shortcode_handler' );
  4.  
  5. function wp_display_constants_shortcode_handler() {
  6.    
  7.  
  8. return "<pre>"."
  9. Constant WP_HOME - ".WP_HOME."
  10. Constant WP_SITEURL - ".WP_SITEURL."
  11.  
  12. Constant WPINC - ".WPINC."
  13.  
  14.  
  15. Constant WP_CONTENT_DIR - ".WP_CONTENT_DIR."
  16. Constant WP_CONTENT_URL - ".WP_CONTENT_URL."
  17.  
  18. Constant WP_PLUGIN_DIR - ".WP_PLUGIN_DIR."
  19. Constant WP_PLUGIN_URL - ".WP_PLUGIN_URL."
  20.  
  21. Constant WPMU_PLUGIN_DIR - ".WPMU_PLUGIN_URL."
  22. Constant WPMU_PLUGIN_URL - ".WPMU_PLUGIN_URL."
  23.  
  24. Constant ABSPATH - ".ABSPATH."
  25.  
  26. Constant __FILE__ - ".__FILE__."
  27. Constant __DIR__ - ".__DIR__."
  28. </pre>";
  29.  
  30. }
Advertisement