>
Download This Plugin | |
Download Elegant Themes | |
Name | Js Css Include Manager |
Version | 1.4.2 |
Author | gqevu6bsiz |
Rating | 100 |
Last updated | 2015-02-16 04:52:00 |
Downloads |
2394
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Js Css Include Manager plugin added 5 bytes of resources to the Home page and 4 bytes of resources to the sample Post page.
Js Css Include Manager plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Js Css Include Manager plugin ads no tables to your Wordpress blog database.This plugin allows you to include extra JavaScript or CSS files in your WordPress page.
You can:
Please if you want to add conditions. For example add filter:
add_filter( 'jcim_condition' , 'my_conditions' );
function my_conditions( ) {
$conditions = array(
array(
"code" => "current_user_can",
"val" => "edit_themes",
"desc" => "Only edit theme role have user",
"help_link" => "http://codex.wordpress.org/Function_Reference/current_user_can"
),
array(
"code" => "is_admin",
"val" => "",
"desc" => "Only admin screen",
"help_link" => ""
),
);
return $conditions;
}