Answers for "get directory plugin wordpress"

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

function plugin_dir_path( $file ) {
    return trailingslashit( dirname( $file ) );
}
Posted by: Guest on October-22-2020

Code answers related to "get directory plugin wordpress"

Browse Popular Code Answers by Language