WordPress Theme

A while back I coded a theme called Basic Simplicity. I’ve not updated it for a while and have begun to use on of the core WordPress themes, Twenty Ten, as my theme of choice. The new WordPress themes are easily customized by using a child themes, leveraging most of the functionality from the parent theme and adding in only the edits using the child theme.

I hope to update Basic Simplicity soon for those who like using it.

194 thoughts on “WordPress Theme

  1. Well their status are all “published.”

    However, when I first go to Dashboard, none are “approved.”

    Does this matter in terms of SEO, etc.?

    • I’m not sure what you’re seeing, but if a post/page is visible to the public (and search engines) there is no meta data I know of like approved/unapproved that would make any difference for SEO purposes. If the approved/unapproved indicator you’re looking at saying a post is not visible/published then there would be a problem :-)

      On multi-author blogs it’s common to have contributors, authors, and editors with different access levels to the content and ability to publish. But on a ‘normal’ single author blog approved/unapproved is normally not used.

  2. Hi Michael –

    Thanks for your response to my request to have no date on my sticky post.

    I replace the code as instructed with

    Posted by and filed in

    and got this error message

    Parse error: syntax error, unexpected T_STRING in /home2/northsx0/public_html/blog/wp-content/themes/basic-simplicity/index.php on line 21

    What did I do wrong — any ideas?

    Thanks,

    Judi

    • Judi… undo

      You can get a fresh version of that file by downloading the theme again. Or you can remove the code you just added.

      That error happens when a little php code is not put in the right place.

  3. I hope you aren’t awake, that you’ll see this tomorrow…

    I narrowed the sidebar to 210 whatevers from 310.

    Is there now a way to make a little bit wider the “main” part, the part to the left of the sidebar?

    • haha… I’m always awake. just kidding :-)

      #content is the main content column. #sidebar is the right sidebar. Any pixels you add to the width of one you should be able to safely take from the other. Just be warned that Internet Explorer is really fussy with widths and layout. If the width of one extends to far, even by a pixel, it will cause the sidebar to fall below the content.

  4. Hi Michael –

    On my site I only use Posted Date Author — so my code looks like this –

    Posted by

    I have tried to add the code you supplied to it to make it work, but I’m doing something wrong.

    Here’s what I tried.

    Posted by

    but I still get a syntax error.

    Any ideas?

    THanks

    Judi

  5. Hey Michael:

    How important is the All-in-one SEO pack?

    Isn’t wordpress already set up to be SEO friendly right out of the box?

  6. I’m glad you’re here…

    Anyway I do happen to have a question:

    Seems that wordpress has “upgraded” to a different version (3.1?).

    Does that affect the Basic Simp theme?

  7. Okay…

    I just created my blog a few weeks ago with your theme. Should I “upgrade” it to the newest version of WP?

    Also, how important is a site map?

    • The newer version is a few months old so you probably have it now.

      By sitemap do you mean google sitemap or sitemap a user would use for navigation?

      I don’t think either is necessary. A google sitemap is nice for SEO purposes. A navigation sitemap is nice (sometimes) for users who get lost, but I think the general consensus is that for a blog it would be unnecessary unless the content was highly structured.

  8. Cool.

    Now I did ask a question a couple weeks ago: How useful is the WP All-in-One SEO pack? Or will traffic just “arrive” organically the more I post?

    Remember I am hoping to start doing business on my site.

    • WordPress blogs are naturally optimized for SEO. If you use a google sitemap I think you increase the odds of the blog being cataloged correctly by google. Adding the SEO Pack you mentioned should improve your SEO too, but I don’t think it’s required because it’s just one small part of the SEO picture.

      I think the most important part is that your content is well written, unique, useful, and plentiful. Keeping meta information, like keywords, tags, descriptions, page titles, urls, image attributes, etc is also very important. If you’re doing all the ‘right things’ for SEO the tools like the all in one seo pack just add icing on the cake, but without the cake, the icing will help you little.

  9. Thanks!

    Okay…

    Two more (IF you have time):

    1. Right under my post titles are

    Filed Under: (and then the categories) and
    Tags: (and then a list of tags)

    How can I move this stuff so that appears at the end of a post rather than the beginning?

    • You’d need to open the index.php file in the theme (Appearance > Editor, select index.php)

      Find

      Just below that you’ll find the lines you are referring to.

      Just below that you’ll see <?php the_content(‘Continue Reading &raquo;’); ?>

      That piece of PHP code is what displays the post/page content.

      If you move the lines you want at the bottom below that line of PHP code you’ve moved the meta info below the post.

      BUT… be careful. Any time you make this kind of change backup your code in a text file (not word processor) so if you mess up the PHP syntax and create an error you can back out the code change.

  10. You said…

    “Any time you make this kind of change backup your code in a text file”

    …but I don’t know what it means.

    Do you mean log on to bluehost and backup everything?

    • All I meant was to open a text editor and paste in the code from page for saving locally. Then make the change. If it breaks go back to the text file with the code and copy and paste it back into the screen that just broke the page.

      You could also FTP into your site and download a copy of the theme to your computer. (wp-content > themes > Basic Simplicity).

      Short version… just nice to have an original pre-edited version handy.

      I say use a text editor (like Notepad (windows) or Text Wrangler (mac)) because word processors usually screw up code.

  11. Okay Michael:

    This may not be possible…

    I’d like a link in the GRAY part right underneath the header to go directly to another website rather than to just another page on THAT website.

    If it’s possible, how might I do it?

    • The bar at the top is in the header.php file (Appearance > Editor). Look for the list with this in it:
      <li><a href="<?php echo get_option(‘home’); ? rel="nofollow">"><?php _e("Home"); ?></a></li>

      That’s the home link. To code a link to another website just add another list item after that of the pages list that is built below that… before the </ul> tag. For example:

      <li><a href="http://www.basicsimplicity.com/&quot; rel="nofollow">Basic Simplicity</a></li>

    • Yes, since the header is in a DIV unto it’s own you could add some custom css. The header id is #header. So this would change all the fonts in the header.

      #header { font-family: arial; }

      TO change just a part of it add more tags to the style.

      #header .description { color: #00ff00; }

      or

      #header h1 { font-weight: bold; }

  12. Hi,Michael,thanks for sharing this good template,but now,i have a question,i want to devide the sidebar to two columes, can you understand what i said,my english is not good.

    • It’s not easy to do and would require a bit of work to do. I don’t have that in my plans for expanding the theme.

      But there is an easy trick that I use on several of my blogs. I insert a table into a text widget to slipt a portion of the sidebar. Works great.

      <table border="0" cellpadding="0" cellspacing="0">
      <tr>
      <td width="120">Column One</td>
      <td width="160">Column One</td>
      </tr>
      </table>

  13. Hi Michael:

    Is there a way to add a direct link to another site in the navigation bar? (Next to “Home,” “About,” etc.)

    Thanks.

    • That cade is in Appearance > Editor, header.php

      Just add the list item you want before or after the function that makes the list, similarly to how the home link is made.

      <div id="navbar">
      <ul>
      <li><a href="<?php echo get_option(‘home’); ?>"><?php _e("Home"); ?></a></li>
      <?php wp_list_pages(‘title_li=&depth=1&sort_column=menu_order’); ?>
      </ul>
      </div><!–end navbar–>

  14. Hi Michael:

    Another question…

    What are the font types used in the header by default?

    (Where the title of the blog goes, in the blue sky.)

    Thanks as usual for everything.

  15. Well here I am again with a question I hope you might be able to answer as adroitly as you have the rest…

    1. In “Settings,” it asks for Blog Name and Tag Line.
    2. In the All-In-One SEO pack, it asks for the home page title.

    Is there a conflict between the two if they aren’t exactly the same? (Will Google be confused?)

    Thanks as always.

    • I typically don’t use the All-In-One SEO pack on my blogs. So I can’t really answer your question. You might ask the makers of the plugin.

      But as far as confusing Google or other search engines… I think there is little risk. Google is virtually omnipotent.

  16. Okay. Thanks.

    On this site (“My Two Cents”), the title on the header isnt a link to the home page like it is with the default Basic Simplicity theme.

    Did you just leave stuff blank in the settings form, or did you check off “don’t show text”?

    • I’ve not tried to add this feature and it’s not on my list. I think it’s very doable with javascript and CSS. You might look for plugins that do it, since my code is a simple list and should be compatible.

  17. Hi Michael:

    I have added the Search widget to the sidebar.

    However, I’d like to remove the words “Search for:” that appear in front of the search box.

    I’ve looked everywhere and can’t figure it out.

    Any idea what I might do?

  18. Hi Michael,
    If I have this straight, You not only make the little houses on trailers but also created your web site?
    I love your houses and directed your site to a friend here in Petaluma.
    However, I am interested in your website design. I am a Faux Painter and artist and have had my own website created through .Mac for 10 years. Well now it is obsolete and not working at all and I need to create a new one.
    Is this something you can help me with? Or Teach me? or ???

  19. I do not think meals have business being deductible. I’m for separation of calories and corporations.
    Punctuality is probably the cardinal business virtues: always insist upon it in your subordinates.

  20. Hi Michael.
    This is my early retirement project.

    Am working on a multisite idea for startup businesses in Spain.

    I have spent an unbelievable amount of time trying to find the right theme; then I found yours; which is almost perfect for me. Thank you for producing it!

    Were I able to remove the “Posted (date) & Comments Off”, which apprears top left hand side, I would consider it near perfect!

    Were I able to change the [Header] Site Name etc to a different font/size/color I would consider it perfect!!

    Can you help me out?
    I would be happy to pay for the work!!!

    Kind Regards

    John Voce

    I will make sure it is always attributed to you, on my sites.

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>