how to get wp-content folder in wordpress?

you can use content_url() it’s located with http://www.example.com/wp-content wp-content folder.

Or for path

you can use WP_CONTENT_DIR it’ll located to wp-content folder.

require_once(WP_CONTENT_DIR. 'uploads/folder/urls.php');

Check more info Documentation

Leave a Comment