Answers for "how to get the path to your plugin in 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

if ( is_admin() ) {
    include_once( plugin_dir_path( __FILE__ ) . 'includes/admin-functions.php' );
} else {
    include_once( plugin_dir_path( __FILE__ ) . 'includes/front-end-functions.php' );
}
Posted by: Guest on October-22-2020

Code answers related to "how to get the path to your plugin in wordpress php"

Browse Popular Code Answers by Language