Categories
-
Recent Posts
Blogroll
Tag Archives: WordPress
The Right Way of Adding JavaScript to WordPress
I’ve written a post, Prevent JQuery From Conflict With Other Libraries, I mentioned that the right way to import JQuery to WordPress is using: < ?php wp_enqueue_script(“jquery”); ? > This will load the default JQuery coming with WordPress to your pages, … Continue reading
Prevent JQuery From Conflict with Other Libraries
JQuery is getting more and more popular, many people are using JQuery in WordPress. The right way to import JQuery to your WordPress is like this: < ?php wp_enqueue_script(“jquery”); ? > Rather than using <script> syntax. Remember to run this … Continue reading
Choose a Syntax Highlighter Plugin for WordPress
More and more codes have been added to my blog, I used to wrap my codes with quote, it’s not enough for long codes. I need a syntax highlight plugin for my blog. I tested several syntax highlight plugins, including: … Continue reading
Posted in Plugins, Tutorials and Hacks
Tagged Code, Program Language, SyntaxHighlighter, Visual Editor, WordPress, WordPress Plugin
2 Comments
WordPress 2.9.2 Released – A Small Fix for Trash Posts
WordPress team just released the 2.9.2 version of WordPress, this is a small bug fix version, as Thomas Mackenzie reported that logged in users can see other users’ posts in Trash. You can fix this problem by upgrade your WordPress … Continue reading
Posted in Blog and WordPress
Tagged 2.9.2, Bug Fix, New version, Trash, WordPress, WordPress team
2 Comments
Tutorials for Translating WordPress Themes
I was thinking about translating my themes to other languages, so that I started to search for some information. And I found it’s not that easy as I imagined. Some details need to be concerned. I thought maybe I can … Continue reading
Posted in WordPress Themes
Tagged Localization, Translation, WordPress, WordPress Themes
Leave a comment
Free Elegant Portfolio WordPress Themes
After my last post Top 10 Best Quality WordPress Themes Of 2009, we have found more great themes, today we are sharing some portfolio WordPress themes with you. 1. Irresistable
Update: BlackNWhite Theme Update 05/November/2009
While updating Gray Lines theme, I also did the same modifications to BlackNWhite theme. Here is the change log: 05/Nov/2009: Sidebar tabs added for Recent posts, popular posts and recent commentsSidebar tabs added for Recent posts, popular posts and recent … Continue reading
Posted in WordPress Themes
Tagged Blockquote, Gray Lines, Theme, Update, WordPress, WordPress Themes
4 Comments
Update: GrayLines Theme Updated 05/November/2009
I’ve done some modifications to GrayLines theme, here is the change log: Chang Log: 05/Nov/2009: Publish Date added to individual posts New Blockquote Design Fix a missing “l” in a <li> of sidebar Codes of blog title and description been … Continue reading
Posted in WordPress Themes
Tagged Design, Gray Lines, Theme, Theme Directory, WordPress, WordPress Themes
2 Comments
WordPress: Getting Most Popular(Commented) Posts
After my post Getting Recent Posts In WordPress before, I am thinking about getting the most popular posts or most commented posts. Talking about most popular posts, are those most posts commented mean they are most popular. Not really, there may be … Continue reading
Separate Trackbacks from Comments in WordPress 2.9
Since version 2.7, WordPress use wp_list_comments() to display comments instead of the old loop. If you only want to show comments without trackbacks, that’s easy to do, just add a parameter: wp_list_comments(‘type=comment’); We also need to consider other things, like … Continue reading →