Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I am learning wordpress by myself. I have a question about theme option for theme development project.
I want to know that is it very important to create a theme option system in theme development project? Is it compulsory?
It is not compulsory, as you can always make the page or project private. It depends on your objectives. If you want to create a theme that applies to the whole system, this can be accessed from settings.
It totally depending on you but this option very useful and make easy to customize the theme... without this you may be need hard work.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am new to wordpress and i need to create a plugin using wordpress. Can you say defaultly how much files I need to create for a whole plugin and how it works? Can you with one example.. Advance thanks
Here i found a guide, may be it can help you in differentiating Actions & Filters
Beginners guide for Actions & Filters
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
if you will need to strip all default css in a wordpress theme is it easiest to just create a new theme from scratch or a child theme? for instance if I were to be making a custom blog would it be easiest to use canvas as the parent theme? Or would I be better off creating a new theme from scratch. I have experience in frontend development but I haven't ever worked with theming in wordpress.
The best thing is to start from a raw theme.
I've been using Bare Bones several times ( http://themble.com/bones/ ).
As they say: Keep what you need, remove what you don't. It's totally up to you.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am new in wordpress and I develop my custom themes but i don't know why functions.php file used in theme development of wordpress.Thanks in advance.
In case you missed it, you should always check the WordPress codex -- http://codex.wordpress.org/ You can find pretty much everything you need there.
As for your question: http://codex.wordpress.org/Theme_Development#Functions_File
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am planning to use Orchard CMS as a base for several web sites and would like to have wide chose of themes. The ones in gallery are not bad, but I would like something different. Can you please tell me are there any places I get purchase any themes and widgets/modules.
I think there are some really nice templates at Bind.pt. They also allow you to design/make changes to the template on the page, and then simply order it - and the pricing is very competitive.
The send you the package, and you can either upload it or if you choose unzip it and customize it further.
Hope this helps
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed last year.
Improve this question
Regarding Wordpress:
Is it best practice to distribute a functions.php file (to be stuck in a WP theme) filled with helpful functions, or distribute a plugin for wordpress that enables these functions anywhere?
it depends. It depends on how coupled those functions are with the theme itself. If the functions are only useful for that theme, or you don't plan on making a lot of themes, just leave them in the functions.php file. If the functions are more general, and you could see yourself or someone else wanting to use them in other themes, you may want to make them a plugin.
Some basic ideas about the use of functions.php files in Theme Development at WP.