Search
 
SCRIPT & CODE EXAMPLE
 

PHP

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/
Comment

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' );
}
Comment

how to get plugin directory path in wordpress

function enqueue_scripts() {
    wp_enqueue_script( 'custom-js', plugin_dir_url( __FILE__ ) . 'js/custom.js', array( 'jquery' ), '', true );
    wp_enqueue_style( 'style-css', plugin_dir_url( __FILE__ ) . 'css/style.css' );
}
add_action( 'wp_enqueue_scripts', 'enqueue_scripts');
 
function admin_enqueue_scripts() {
    wp_enqueue_script( 'custom-js', plugin_dir_url( __FILE__ ) . 'js/custom.js', array( 'jquery' ), '', true );
    wp_enqueue_style( 'style-css', plugin_dir_url( __FILE__ ) . 'css/style.css' );
}
add_action( 'admin_enqueue_scripts', 'admin_enqueue_scripts');
Comment

how to get plugin directory path in wordpress

/**
 * Include CSS file for MyPlugin.
 */
function myplugin_scripts() {
    wp_register_style( 'foo-styles',  plugin_dir_url( __FILE__ ) . 'assets/foo-styles.css' );
    wp_enqueue_style( 'foo-styles' );
}
add_action( 'wp_enqueue_scripts', 'myplugin_scripts' );

Answer
http://example.com/wp-content/plugins/my-plugin/assets/foo-styles.css
Comment

how to get plugin directory path in wordpress

define( 'MY_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
include( MY_PLUGIN_PATH . 'includes/admin-page.php');
include( MY_PLUGIN_PATH . 'includes/classes.php');
// etc.
Comment

how to get plugin directory path in wordpress

$dir = plugin_dir_path( __FILE__ );
// Example: /home/user/var/www/wordpress/wp-content/plugins/my-plugin/
Comment

how to get plugin directory path in wordpress

foreach ( glob( plugin_dir_path( __FILE__ ) . "subfolder/*.php" ) as $file ) {
    include_once $file;
}
Comment

how to get plugin directory path in wordpress

function plugin_dir_path( $file ) {
    return trailingslashit( dirname( $file ) );
}
Comment

wordpress get plugin root directory

// Use a file of a plugin
include WP_PLUGIN_DIR . '/plugin-name/plugin-file.php';
Comment

PREVIOUS NEXT
Code Example
Php :: lDownload multiple files as a zip-file using php 
Php :: laravel vue error 500 
Php :: laravel groupby and latest 
Php :: laravel get current route url 
Php :: curl php loop 
Php :: laravel append parameter to links 
Php :: multi condition inside single if in php 
Php :: php error log 
Php :: uninstall phpstorm ubuntu 
Php :: zip missing php install 
Php :: how to delete empty rows in phpmyadmin 
Php :: foreach loop in laravel 
Php :: php number to words 
Php :: php filter non utf-8 characters 
Php :: how to maintain serial number in pagination in laravel blade 
Php :: declare empty array in php 
Php :: wp php get product item attributes name 
Php :: how to make arrays in php 
Php :: laravel make model with migration 5.8 
Php :: laravel blade check if request url matches 
Php :: model hasmany laravel 
Php :: php hello world program 
Php :: POP UP WITH PHP 
Php :: Undefined index: file in upload.php 
Php :: php timestamp to iso8601 
Php :: how to install laravel 
Php :: laravel count distance lat/longtidue 
Php :: php artisan tinker encription cmd 
Php :: fakher ul islam khan 
Php :: ziparchive php example 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =