wordpress not able to open theme-editor.php

You can try enable the theme editor via WP-Config as shown here: http://www.wp-edge.com/how-to-enabledisable-wordpress-theme-editor/ It’s probably impossible if you don’t have FTP access – but its possible that the theme editor was enabled previously via the theme funcitons.php and has since been disabled once you re-installed a fresh version of it.

To create a theme or use an existing one? [closed]

I enjoy writing my own themes, and I actually think doing it from scratch turns out a better product in the end. That said, I’m not sure building your first theme on a client project is a good idea, and the time required to learn it would be prohibitive and would either cost you/your company … Read more

Starting fresh on a blank “theme” [closed]

Now that you have mastered modifying a WordPress Theme you are ready to create your own. There are many ways to go about this, and it’s up to you to figure out what is best for you. Personally, I like to use a WordPress Theme framework. My favorite is called Sage (formerly known as Roots). … Read more

Theme Appearance [closed]

every theme appears as basic HTML. So all the pictures, functionality, etc, do not appear When you visit any page which showcases a theme, or even check out the theme’s preview image (which is the image that shows up under the theme selection page in the back end), you will see an image of the … Read more

How can I either move the nav bar down or create more space for the header? Theme – Ajaira

It looks like the background image was added to the tag inline. You will need to change the following: Locate your template file (probably header.php) which has the tag Inside style=”” remove background-size: cover and replace it with background-size:auto 100% then add background-position: center This will let the background image stretch to the height of … Read more

Best way to include pagination in a theme [closed]

Paginations mostly rely on the global $wp_query variable to generate the data. Using get_posts() will not generate that, because it returns an array of posts, not an instance of the WP_Query() class itself. As a result, you don’t have access to class’s methods, such as $query->max_num_pages. You can use a plugin to add pagination (such … Read more