Regal WordPress Theme

Regal is a theme that boasts both sophisticated style and functionality. With incredible flexibility complimented by its conservative main body, it allows for simple and quick changes to showcase your content in a visually stunning and effective manner.

Demo

Download Regal Wordpress Theme Version 2.3.1

== Changelog ==

15/06/2011 – v2.3.1
Added changelog, readme files and few other files in the zip file missed in the 2.3 update

15/06/2011 – v2.3
Minor changes to settings
Removed bookmark links and images from single post page
Updated language file and removed old language files

07/07/2010 – v2.2
Minor fixes to comments section
Changes to css

07/07/2010 – v2.1
Fixed option page
Added Support forum link
Added Donate Button
Changes to css

30/06/2010 – v2.0
Removed Author Page
Fixed some content code
Changes to sidebar
Changes to css

22/06/2010 – v1.9
Added post-thumbnails
Added custom background support
Added custom menu support
Added Author page
Added booknmark feature to post pages
Changes to sidebar
Changes to themes settings page
Fixed css to menu
Changes to css

14/05/2010 – v1.8
Added widgets in footer for additional option
Added German language translation thanks to Lars C. Bernstein
Added few more options to themes settings page
Fixed css for menu, comments, rss feed and the post layout

12/11/2009 – v1.7
Added Childmenu to the pages menu
Many changes made to theme files for full translation thanks to Georg from Team Blogos
Language files added

05/11/2009 – v1.6
Added Trackback and ping feature
Fixed css

04/11/2009 – v1.5
Added nested quotes
Minor changes to threaded comments

28/10/2009 – v1.4
Fixed the normal layout

26/10/2009 – v1.3
Changes to the theme settings
Minor changes to the header

07/10/2009 – v1.2
Fixed minor changes

02/10/2009 – v1.1
Fixed minor Category issue

25/09/2009 – Intial release 1.0

This entry was posted in Theme and tagged , , , , , . Bookmark the permalink.

63 Responses to Regal WordPress Theme

  1. Joe says:

    Hello, I love this theme. However, when I add new categories, often they do not show up in the menubar even if I have posts in the category. This seems to be very intermittent and random and I’ve tried everything I can think of to troubleshoot. Any advice? Thanks again.

    • G' Blog says:

      please email me your installation url at info @ gauson .com

    • hi – I am also having this problem – of the 7 categories I have in my site I can now only see 1 + the home option in the very top menu bar. As per previous poster – this is also a bit intermittent – previously only 4 were displaying yet today I am back to 1. Am unclear why this is – do you have any suggestions?
      Thanks in advance
      Katie

      • G' Blog says:

        Hi Katie,

        Please find the following in your header.php file

        <?php wp_list_pages('title_li=&depth=4&number=10&exclude='); ?>

        and then replace it with
        <?php wp_list_pages('title_li=&depth=4&exclude='); ?>

        Please let me know if it solves your problem. Thanks

  2. xzm says:

    Hello Gauson!I have meet with a problem,can you help me?

    how to display “sponsor” and flickr photos in my sidebar?
    Thanks!

    • G' Blog says:

      after you have installed the theme please visit the theme settings page to setup your sponsor ads. as for the flickr photo’s you need to get the flickrRSS plugin from wordpress plugin section. hope it helps you.

  3. Fist of Zen says:

    Hi Gauson,

    Thanks for the awesome theme.

    I have 4 questions.
    1.Why don’t the thumbnails of some pictures in some posts don’t show up on my index page?
    2.And if there are more than one pictures in a post which one shows up in the thumb?
    3.How can I get rid of blogroll?
    4.Is there a way I can list my posts under most recent posts in reverse order?

    Thanks a ton

    • G' Blog says:

      I see you have made some progress to your questions on your own. The issue with why you don’t see some of the thumbnails is because the images might have been added via the image gallery and not during the writing of the post. I suggest recreating thumbnails for those images. as for your second question the first image shows up as the thumbnail of the post you can use a plugin and modify the code if you want to choose which image you want as your thumbnail for the post.

      Hope it helps you.

  4. Craig says:

    Any update on the theme coming up for the new wordpress version?

    • G' Blog says:

      Yes I am working on a new updated version with added features which will be released by friday. It will address the problems with the menu and category which some people are facing and will have a face lift with few tweaks here and there.

  5. Yes it does. all back now. thank you very much!
    Katie

  6. DeathseaL says:

    why 125 x 125 banner not working?
    I have been check diplay add on 125 x 125 banner Settings

  7. Sean says:

    Great theme! It fits my site perfectly. My only problem is getting the 125×125 ads to show up. I enabled them under settings but they do not show up.

    • G' Blog says:

      Thanks for using one of my themes and for making me aware of the problem with the ads section in the sidebar. It occurs when you use widgets in the sidebar and can be rectified by changing the following code in the sidebar.php file

      <?php /* Widgetized sidebar, if you have the plugin installed. */
      if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>

      <?php
      $ads2 = get_option('Regal_ads2');
      if($ads2){ include(TEMPLATEPATH . '/ads.php'); }
      ?>

      with this code

      <?php
      $ads2 = get_option('Regal_ads2');
      if($ads2){ include(TEMPLATEPATH . '/ads.php'); }
      ?>

      <?php /* Widgetized sidebar, if you have the plugin installed. */
      if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>

      Hope it helps.