About The Doctor

  • Website: http://wpfirstaid.com or email
  • Biography: My name is Edward Caissie. I am a WordPress enthusiast; theme designer; plugin developer; and blogger ... not necessarily in that order. I founded WP First Aid as a place to help others with WordPress related items and issues.

Posts by The Doctor:

Remove Comment Form Website Section

on Jan 17, 2012 with No Comments | Short Link
in Functions, Tips
as , , ,

From time to time an interesting Five-Minute-FixTM comes along that sparks a great reason to add another WordPress Tips post. The idea for this tip started with this comment at BuyNowShop.com:

… how to remove the website section when leaving a reply/comment …

The solution may be obvious to some and can be readily derived from the information found on the WordPress codex page for the `comment_form` function, but if you are new to WordPress and/or not familiar with writing a function to use with `add_filter`, here is a very simple and working snippet to use in your theme:

To see the tip click here.To hide the tip click here.
function wpfa_remove_comment_website_section(){
    $commenter = wp_get_current_commenter();
    $req = get_option( 'require_name_email' );
    $aria_req = ( $req ? " aria-required='true'" : '' );
    $fields =  array(
        'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
                    '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>',
        'email'  => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
                    '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>',
        'url'    => '' /** removes website section */,
    );
    return $fields;
}
add_filter( 'comment_form_default_fields', 'wpfa_remove_comment_website_section' );

Ideally, this will be placed in the ‘functions.php’ file of your theme, but better yet this should be included in the Child-Theme you created of the theme you want to modify.

No-Title Sticky Post-Format Posts?!

on Dec 9, 2011 with No Comments | Short Link
in Tips
as , , , ,

Making sure to test all of the combinations these three items can create.

Filtering WP Title

on Nov 30, 2011 with No Comments | Short Link
in Tips
as , , ,

A recent recommendation, starting with WordPress 3.3, from the WordPress Theme Review Team reads: Themes are REQUIRED to use wp_title filter to filter wp_title() (RECOMMENDED), or pass argument to wp_title() (OPTIONALLY), in order to modify document title content This has been discussed, worked through, and for the most part sorted out … but there doesn’t [...]

Enqueue Plugin Custom Stylesheet

on Nov 15, 2011 with No Comments | Short Link
in Tips
as , , , , , , ,

Now that is a bit of a handful to grab onto … but the code and concept is relatively straight forward and easy to implement. As I was recently updating some of my plugins in preparation for WordPress 3.3 I decided to better implement the style elements being used in these plugins. The current best-practice [...]

Start Using WordPress Beta

on Oct 12, 2011 with 2 Comments | Short Link
in Tips
as , ,

The basics, as a general guideline, on how to start using the latest WordPress beta version.

Do Not Display Comments HTML Tags

on Aug 7, 2011 with 12 Comments | Short Link
in Functions
as , ,

A standard function found in many themes is the comment_form. This is a core function of WordPress that produces a standard comment form generally consisting of text fields for the name and email address and a textarea for the actual comment. You will also find there are some standard text outputs produced by this function [...]

Dynamic Copyright Revisited

on Jun 13, 2011 with No Comments | Short Link
in Tips
as , , ,

An updated version of the dynamic copyright function found in BuyNowShop.com themes by Cais.

WordPress Child-Themes

on Apr 9, 2011 with 3 Comments | Short Link
Last modified by The Doctor on April 2, 2011
in Tips
as ,

Let’s start with a definition for a Child-Theme: A WordPress child theme is a theme that inherits the functionality of another theme, called the parent theme, and allows you to modify, or add to, the functionality of that parent theme. the WordPress Codex Child-Themes are also: … the recommended way of making modifications to a [...]

Reset Your WordPress Test Site

on Jan 23, 2011 with 5 Comments | Short Link
Last modified by The Doctor on March 22, 2011
in Tips
as , , ,

How to reset your WordPress test site in three easy steps.

WordPress Christmas

on Dec 22, 2010 with 1 Comment | Short Link
in Tips
as , ,

Merry Christmas 2010!