Latest Updates
Latest Plugins
Latest Documentations
Latest Tutorials

Video Tutorial Coming Soon..

There will be video demos on how you can change the setting in the backend on-the-fly to make the site look unique. Just change 5 items below and your blog/site will look totally different from anyone else:

1. Change the Header background images or use custom HTML for the header ==> “Appearance -> Headers”
2. Change the sidebar title background color and text color ==> “Appearance -> Sidebars”
3. Change the Entry Title background color and text color ==> “Appearance -> Entry”
4. Change the webpage background ==> “Appearance -> Layout”
5. Change the layout of “Blog Page,” “Category Page,” “Single Post” and “WordPress Page” ==> “Appearance -> Layout”

*Note: once click “Save Options” or enter to save the setting, you should view the site to see how it’s changed (e.g. the Column Layout for Blog Page, Category, Single Post (article in a category), or WordPress Page (the first WP Page is titled “About”).

Anyway, just want to let you know that the videos are coming ;).

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!



VIDEO: Installing a WordPress Theme or Plugin Using FTP or Cpanel

VIDEO: Installing WordPress Using cPanel

VIDEO: Installing WordPress Using FTP

Best Wordpress Template 2.0 - 2.3.2 Updates II

Below is the list of changes in the current Best Wordpress “themes” Template 2.0 - 2.3.2II (updated from 2.0 - 2.3.2):

FEATURES ADDED

  1. Add a WordPress “Page Template” to list all the authors via authors.php.
  2. Add the ability to display or not display Bread Crumb navigation above the Entry Title in the “Presentation => Entry” admin area.

CHANGE LOG

  1. Change back the Header Info for Category and Tag page dynamically to the default Blog Name and Description when the option to display Bread Crumb navigation is checked. (The <h1> tags are used in the end title of the Bread Crumb for Category Name and Tag Name).
  2. Dynamically add rel=”nofollow” attribute to Category Link under Entry Info in Single Post/Page when the option to display Bread Crumb navigation is checked.
  3. Remove the ‘Leave a Reply” link and comment form when the post/page Comment Status is “closed” => for cleaner look.
  4. Add to the css “.bread-crumb ul, .bread-crumb li{display:inline;margin:0;padding:0;}” to style.php.
  5. Add Bread Crumb Navigation for single page to display parent page hierarchy.
  6. Change the Archives.php to display Archives by Category and Archives by Month side-by-side.
  7. Remove the check box options to widgetize the sidebars in the “Presentation => Sidebars” configuration page. Now, if you drag in some widgets they will show up on the sidebar without needing to check the widgetize boxes; and if there’s no widget for a sidebar, the default coded widgets will be displayed for that sidebar.
  8. Change color of Entry Title links and visited link to match the default coded link and visited link color.


List/Latest Posts in Category ID WordPress Plugin

This is my new simple WordPress plugin that allows you to list: (1) the latest 5 or 7 posts in a category by the category ID, (2) all posts in the category by category ID, and (3) all posts with their excerpts in the category by category ID.

Plugin Concepts

Well, before writing this plugin, I was looking for a plugin that can list the latest post in category, as well as all the posts in the category (with and without the post excerpt). Mainly, I just want to use the listing of all posts + excerpts in category ID function, so I can use it to list all the posts + excerpt as a CATEGORY TYPE II - according to my SEOed site architectural blueprint on link/page-rank distribution. (CATEGORY TYPE I is the default WordPress category.php page that usually list the latest 10 posts (configurable in the “Options => Reading” admin area).

Anyway, because I could not find a way to ‘automatically’ create these CATEGORY TYPE II pages with all its posts and post excerpts, I had adapted another solution to have an option that let the WordPress admin choose “the Number of Posts to show per Category page” in the Best WordPress Template’s “Presentation => Entry” configuration back-end.

Plugin Features

Nevertheless, I had included this plugin in the downloads of the Best WordPress Template + plugins package, because some of you may want to use the default WordPress category page and could use this plugin to create the CATEGORY TYPE II pages to display all the category’s posts and post excerpts => so you can spread the link-love/link-power evenly to all the posts.

Also, there are 2 functions that you can use to display the “Latest Post from Category (ID)” in this plugin, which will be discussed in the “Plugin Usage” section below.

Plugin To-Do List

  1. Use Wordpress Codex API instead of SELECT database.
  2. Add parameter(s) so user can choose the # of posts in the category by category ID to display along with optional post excerpts.

Plugin Installation

Installation is like any WordPress plugin:

1. Download the Best WordPress Template + plugins package
2. Unzip
3. Upload posts-in-category.php to wp-content/plugins on your server
4. Activate the plugin
5. Use the output functions (see “Plugin Usage” below) in your template or sidebar widgets if you’re using PHP widgets.

You can find full details of installing a plugin on the how to install a WordPress plugin page.

Plugin Usage

There are 4 output php functions that you can use:

  • <?php posts_in_cat($catID) ?> = this php function will output a list of all posts wrapped in the <li> tags in the specified category ID (replace $catID with the category ID):

<li><a href=”Post1-Permalink-URL” title=”Post-Title”>Post-Title</a></li>

<li><a href=”Post2-Permalink-URL” title=”Post2-Title”>Post2-Title</a> </li>…

  • <?php excerpt_posts_in_cat($catID) ?> = this php function will output a list of all posts and post excerpts wrapped in the <li> tags in the specified category ID (replace $catID with the category ID):

<li><a href=”Post1-Permalink-URL” title=”Post-Title”>Post-Title</a> - Post1 Excerpt</li>

<li><a href=”Post2-Permalink-URL” title=”Post2-Title”>Post2-Title</a> - Post2 Excerpt</li> …

  • <?php latest_5_in_cat($catID) ?> = this php function will output a list of the latest 7 posts wrapped in the <li> tags in the specified category ID (replace $catID with the category ID):

<li><a href=”Post1-Permalink-URL” title=”Post-Title”>Post-Title</a></li>

<li><a href=”Post2-Permalink-URL” title=”Post2-Title”>Post2-Title</a> </li>…

  • <?php latest_7_in_cat($catID) ?> = this php function will output a list of the latest 7 posts wrapped in the <li> tags in the specified category ID (replace $catID with the category ID):

<li><a href=”Post1-Permalink-URL” title=”Post-Title”>Post-Title</a></li>

<li><a href=”Post2-Permalink-URL” title=”Post2-Title”>Post2-Title</a> </li>…

Discuss this in the forum » - (3) Posts

Bread Crumb Navigation for Best WordPress Template

Hi, I just want to let you know that the bread crumb navigation will be add to my Features to develop list. Basically, you will have the options to display or not to display it just above the Entry Title (or at the top of the web page?).

Also, I’ll be adding some option fields on the admin back-end so you can tweak the design of the Entry Info as well. With the options, you can display the Entry Info above the Entry Title, below the Entry Title, or way at the bottom of each Single Post/Page.

Anyway, I’ll probably implement the bread crumb navigation as soon as they are tested on the Test blog.

Discuss this in the forum » - (1) Posts

Week 3: To-Do List for Best WordPress Template

Today is Monday January 14, 2008! Anyway, below is the list of things that I’ll need to do regarding the Best WordPress “themes” Template for this week:

  • Finish What’s Left in “Week 1: To-Do List for Best WordPress Template″.
  1. Finish testing and tweaking the sales process: including the tweaking of the look and feel of the affiliate program membership back-end.
  2. Fix the bug in the MintAds plugin, which threw the “database table does NOT exist” error.
  • Finish What’s Left in “Week 2: To-Do List for Best WordPress Template″.
  1. Post about the reasons why I switch from the “normal” downloads/membership/affiliate-program system to the “current” updates delivery system used on this site (with a now totally separate affiliate program, which is yet to launch =).
  • List of Other Things To Do for This Week 3:
  1. Create a plugin to add categories descriptions in the Archives display for Categories.
  2. 1/2DONE. Testing the Plugins and Features Implementation at Discuss this in the forum » - (1) Posts

Copying The Setting of My Theme & Plugins Configurations

UPDATE:  I have updated the instruction for creating the ’special pages’ on the Copy and Dummy blogs, please visit the link below for more details.

Hi all, I just want to let you know that I have just finished writing out the Instructions for Copying Theme & Plugins Setting on the Copy Best WordPress Template Blog =P.

Please feel free to login to that site with USERNAME = minttree and PASSWORD = copy to copy all the setting discussed in the Instructions for Copying Theme & Plugins Setting post.

Enjoy and please don’t do anything else except for copying those setting configurations.

Thank you.

~Mint Tree~

P.S. I have also set up another clone blog at BestWordpressTemplate.com/Dummy for you to copy - just in case the copy blog mess up. Use the login info below:

USERNAME = minttree

PASSWORD = dummy

Discuss this in the forum » - (1) Posts

Already Registered But Don’t Know the Password?

Hi, as a follow up to the post on WordPress inability to send a confirmation email with your password when you registered, here is just a quick tutorial on how to recover the password if you have already registered (but never have gotten a password):

1. Basically, just click on the “Lost Password?” link in the “WP Login” widget on the left and, then, enter in your registered email address (Case Sensitive) to recover the password. Login to your entered email account and see what the password is.

2. If for any reason, you can’t recover your password, please leave a reply in this post with your registered USERNAME and I’ll manually set up a temporary password for you, which you can use to access your “Profile” and change all your information - except for the USERNAME.



« Previous
| Up Top | Next Page »
HELP & SUPPORT QUESTIONS

Please post all the support or any other questions in the forums.

Thank you!

P.S. I do not do email support.
Latest Comments
data: looks like a great idea, i’m looking for a widget enabled footer-sidebar, but i dont understand, does it...
mas: is is for wordpress 2.6 ? and whereis the download link? Thanks
Fahd Murtaza: Can’t find the link to download.
Best WordPress Template: Hi Sharon, can you “recover” the password? If not, let me know your username...
sharon: hi i cant remember my password lol.
Best WordPress Template: No, problem :D. *For the rest of the folk, please post your question in the Support Forums:...
Dee: Thanks Mint Tree I’ll take a look at that and I’ll make use of the forum in future!
Best WordPress Template: Hi Dee, I think I understand what the problem is. I think you need to change the...