‘WordPress Tips’ Category

WordPress Helper Firefox Extension

12
responses

WordPress Helper Firefox Extension.: An extension for Firefox that adds a bunch of automated and manual features to the right click contextual menu in Firefox. Available features include the following: Categorized Access to WordPress Help pages (WordPress Codex) Search for highlighted text strings on websites One-Click-switch to a website’s WordPress backend Update Notification on new WordPress versions Website Profiles Custom Shortcuts Various preference settings There has been active development on this extension since April of this year with good documentation of progress and the author is taking suggestions from users for future uses/features of the extension. Although many of these actions can be performed with shortcuts or other tools within Firefox, this extension puts it all into one place at easy reach of the Firefox user. The original developers’ page is in German but the linked page should be the English version. [EDIT] Sorry, link fixed. Thanks for the heads […]

[Continue Reading...]

Tutorial: Creating Custom Write Panels in WordPress

10
responses

Tutorial: Creating Custom Write Panels in WordPress.: A fantastic, detailed and quite useful tutorial on creating custom write panels for the WordPress Write Post page. I had written something similar for the WordPress Jobs site and it turned out to be a fantastic tool to quickly get to and add/modify Custom Fields in posts. Custom write panels are most useful for customized installations of WordPress and could be used to add many different types of information into a post both easily and quickly. The image below shows a couple of examples of custom panels and I am sure there are hundreds more. This tutorial makes use of Custom Fields in WordPress using the various functions that help manage Custom Fields (I keep typing customer), and is a shining example of how useful and flexible Custom Fields can be in developing a full CMS with WordPress. Since the final code is […]

[Continue Reading...]

Tackle Plugin Compatibility Issues While Using Popular Libraries

15
responses
by
on
August 27th, 2008
in
WordPress Tips

I recently got a email from a plugin developer, with regards to him having compatibility issues with one of the plugins I had developed. It turned out that both our plugins used a popular library called PclZip for adding archiving features. Due to the compatibility issue, accessing his plugin would cause a fatal PHP error saying that the PclZip class cannot be re-declared, when both our plugins were activated. The compatibility issue arose because of two things; A mistake on his part while checking for existence of class objects in the code. A mistake on my part of using custom libraries, instead of using those provided by WordPress core. Here is a code snippet used to check for class existence. if(! function_exists(‘class_name’)) {    require_once(‘myclass.php’); } $object = new class_name(); The above code is wrong, since: Class names cannot be accessed as functions. The internal methods of a class are […]

[Continue Reading...]

Safest Way to Include Plugin Code in Themes

27
responses
by
on
August 20th, 2008
in
WordPress FAQs, WordPress Tips

Several plugins provide users with template tags like functions to include plugin output into themes, the most common way of including plugin code into themes looks like this: <h2>Section Header</h2> <?php plugin_template_tag_function(); ?> Though the above code is absolutely right, PHP errors will occur if you disable the plugin and do not remove the template tag from the theme. There is a much better way of including template tags in your themes, which ensures that PHP errors do not occur when you disable plugins and do not remove them from your themes: <?php if ( function_exists(‘plugin_template_tag_function’) ) : ?> <h2>Section Header</h2> <?php plugin_template_tag_function(); ?> <?php endif; ?> The if condition in the above code ensures that the function you want to use is registered, before the code is executed. This extra check will ensure that your theme will load without PHP errors, even if the plugin has been disabled. If […]

[Continue Reading...]

What Does the Blurb on Top of Plugins Link Mean?

31
responses
by
on
August 16th, 2008
in
WordPress Tips

If  you are using WordPress 2.6 and above you may have noticed a blurb above the plugins link with a number, many users are confused about this and have asked me about it, here is a simple explanation to all WordPress users who are confused about the blurb. The blurb on top of the plugins link indicates the number of plugins for which updates are available, making it easier for users to track updates without having to frequently visit the plugins page. You may not notice the blurb if the plugins you use are up-to-date. Hope this answers your question about the Blurb you have always been wondering about.

[Continue Reading...]

WordPress.com 2.5 Essential Training Videos

7
responses

WordPress.com 2.5 Essential Training at lynda.com Online Training Library® is a set of training videos by Maria Langer (who also happens to be a professional helicopter pilot) that walk through the setup and use of WordPress as a blogging tool. Sadly, the title of this set of videos might be a bit misleading (though the title does indeed say WordPress.com, I was taken by the version number in the title) since the videos are tailored for WordPress.com blogs and not for self hosted WordPress.org blogs. However, a few of the initial videos are offered for free download and the only option for purchase of the full set is via a monthly subscription for $25 which would give the user access to all the videos on lynda.com. There are plans to sell the videos as a CDROM for purchase but those are not available as of this post. The videos are […]

[Continue Reading...]

Top 10 Tools to Get Blogging Done

7
responses
by
on
May 8th, 2008
in
LinkyLoo, WordPress, WordPress Tips

Top 10 Tools to Get Blogging Done: Just like it sounds, LifeHacker lists the top 10 tools, according to them, to get the job of blogging done. If you have ever been to a WordCamp and heard Lorelle speak, she has some of the best power blogging tips that I have ever come across. JohnP has some pretty effective tips on power blogging as well.

[Continue Reading...]

FAQ On WordPress 2.5 Version 2

57
responses
by
on
April 9th, 2008
in
WordPress Tips

Although the FAQ on WordPress 2.5 did an excellent job of answering a ton of frequently asked questions, users chipped in via their comments and ended up asking even more questions. This post will try to highlight a few of the questions brought up in that post and explain the answers in more detail. Q. Is there a way to see a count on the number of comments you have total? A. I’ve looked around for that particular detail and it has been omitted from WordPress 2.5. However, the good news is that a ticket has already been made (Ticket #6471) According to the change history, it looks like this will be one of those things that will come along with 2.6 and not WordPress 2.5.1. Q. What happens if i don’t upgrade to WP 2.5? A. This is open to opinion but I’ll point out the obvious. If you […]

[Continue Reading...]

FAQ on WordPress 2.5

91
responses
by
on
April 1st, 2008
in
Blogging News, WordPress, WordPress Tips

[I did not write this post. It was written with great care and in great detail by MichaelH on the news section and is reproduced verbatim here. For those of you that do not know Michael’s work, his work on the Codex and his help with WordPress and its documentation makes him a legend in my books. Thank you Michael!] These questions and answers were gleaned from the wp-hackers and wp-testers e-mail lists over that last several weeks. Q. How can I find the Post ID or Page ID? A. If your browser shows the URL in the status bar, when you mouse over a link, you can see the ID in the as part of the URL displayed in the browser status bar. In FireFox you can show the status bar by checking the Status bar choice under View. A more complicated method to finding the ID is to use […]

[Continue Reading...]



Obviously Powered by WordPress. © 2003-2013

css.php