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.
Related
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.
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 8 years ago.
Improve this question
I want to be a wordpress theme developer.
I already know HTML,CSS,PHP,MYsql very clearly.
I know how to run a blog with wordpress.
So,what should i learn now.?Please suggest me?
First you need to understand the basic structure and file higher key of any standard wordpress theme like twenty twelve . Then try to make child theme based on it. You can see this link http://www.elegantthemes.com/blog/resources/wordpress-child-theme-tutorial .
Once you are okay with child theme development you can take approach to build wordpress theme .
If you want to build theme from a html then you can also see this link http://code.tutsplus.com/tutorials/creating-a-wordpress-theme-from-static-html-creating-template-files--wp-33939
Take a look at this page http://codex.wordpress.org/Theme_Development
It explains how you develop a wordpress theme from scratch. It's free to publish at theme at no cost. Take a look at the fundamentals of wordpress theme development http://line25.com/articles/15-tutorials-to-help-you-build-wordpress-themes. These arte just a bunch of tutorials to help users create modern themes since that is the key to popularity, I believe.
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 8 years ago.
Improve this question
Not sure if this is a stupid question or not,
but i want to create a better looking notes database which should remind users of our companys homepage.
Is it possible to use codes extracts of the wordpress themes css code?!
It might be easier to start with the Bootstrap4 XPages plugin on openNTF and then work to skin that.
As long as CSS stylesheets don't reference by element ID, it's possible to utilise elements. However, bear in mind that parts of the CSS stylesheets you're using may get overwritten by inline styles or stylesheets from the XPages runtime itself. In my experience, you will usually need to make some modifications to the stylesheets your using, but it's doable.
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 9 years ago.
Improve this question
Many times, while developing Wordpress plug-ins, themes or widgets, we use unnecessary lines of code and logic.
As the time goes we find and get better solutions for same logic which is tidy, simple and good in performance.
Here I would like to know such Tips & Tricks, that makes our wordpress development life simple and enjoyable.
(I will also add some of my Tips & Tricks here.)
Including javascript :
To include javascript in wordpress plugin,normally we use
wp_enqueue_script('PATH_TO_JAVASCRIPT');
But this include javascript in both front side and admin side of site, if that plugin is active.
If you want to activate it on only admin side use
if(is_admin()){
wp_enqueue_script('PATH_TO_JAVASCRIPT');
}
2 . Using wordpress classes, objects, functions outside wordpress:
To use wordpress classes, objects, functions outside wordpress, simple include wp-load.php file in your script
<?php include_once 'wp-load.php';?>
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.