Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am writing a wordpress plugin and i want to make some changes on appearence of site.How can i change some html and css with my plugin?

What i mean is this:I do something with my plugin and i have some result with that.I want to add some css and make it beautiful.Where i want to make change is home screen.How can i do that?

For example,a theme's div class name is foo,another one is hoo.

Now when i want to prepend something to that div there is no similiarity.So i decided to write a little theme which is integrated to my plugin.

With another word,i want to change theme automatically by my plugin.Is that possible?

share|improve this question

2 Answers

You can add new 'CSS' and 'Javascript' in header of you website using

<?php
add_action('wp_head', 'your_function');
?>

In that CSS file you can create whatever CSS classes you want. And yes this can be accomplished using plugin (But not recommended).

share|improve this answer
okay thanks for your reply,can i add a theme with a plugin? – Gandalf Jan 26 at 21:42
Hmm I guess you are newbie to wordpress. Actually you don't need plugin to add theme in wordpress. Why do you want to add theme using plugin? – Kaleem Sajid Jan 28 at 10:42
If you want to activate theme using plugin consult this article it'll be helpful codex.wordpress.org/Plugin_API/… – Kaleem Sajid Jan 28 at 10:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.