Answers for "plugin directory path wordpress php"

PHP
3

how to get plugin directory path in wordpress

//current path: /home/user/var/www/wordpress/wp-content/plugins/my-plugin/
$dir = plugin_dir_path( __DIR__ );
//$dir is set to /home/user/var/www/wordpress/wp-content/plugins/
Posted by: Guest on October-22-2020
1

how to get plugin directory path in wordpress

$dir = plugin_dir_path( __FILE__ );
// Example: /home/user/var/www/wordpress/wp-content/plugins/my-plugin/
Posted by: Guest on October-22-2020

Code answers related to "plugin directory path wordpress php"

Browse Popular Code Answers by Language