Help with Wordpress plugin

Can someone help me to load JS and CSS with the help of a plugin. I’m confronting problem for last couple of week. Help from an expert would solve my brain. I hope to hear from you soon.

Well, Wordpress is a plugin to a website to handle CONTENT. It already has most of what you want to do inside it. Have you studied the Wordpress Docs to see how you add CSS in? Also, do you have full access to your site or just the Wordpress console?

We really need more info on what you are asking of us. If it is just using CSS, etc with Wordpress,
here is a link that explains that:
http://codex.wordpress.org/CSS

Hope that helps…

Could you mind if I send my login of the website by private message? The code is as follows:

There are three files, e.g., example.css, example.js and jquery.min.js.

I’m loading Js and CSS files by calling from load-js.php file.

<?php function eucookieslaw_load_js_and_css() { wp_register_style( 'example.css', eucookieslaw_PLUGIN_URL . 'example.css', array() ); wp_enqueue_style( 'example.css'); wp_register_script( 'example.js', eucookieslaw_PLUGIN_URL . 'example.js', array('jquery') ); wp_enqueue_script( 'example.js' ); wp_register_script( 'jquery.min.js', eucookieslaw_PLUGIN_URL . 'jquery.min.js', array('jquery') ); wp_enqueue_script( 'jquery.min.js' ); } ?>

Am i doing something wrong here? If yes, where I can change?

Well, I do not know much about Wordpress. The link I sent to you before covers using CSS inside of Wordpress. Wordpress is a programming plugin. So, it is really a bunch of different programming tools. On use is the Wordpress “Core” which is basically CSS and other languages. So, you can alter that if needed to add in different options for your CSS needs. I would ask your questions under that site. It is not really a PHP question. Once you get your CSS and PHP working inside of Wordpress, then, we answer your PHP questions…

There is a large number of support sites for using CSS and PHP INSIDE of Wordpress. Just google to find them. If you can’t find what you are looking for ask here again and we will try to search it for you… Good luck…

Sponsor our Newsletter | Privacy Policy | Terms of Service