Welcome to Dagon Design. In addition to free scripts, WordPress plugins, and articles, we offer a variety of services including custom theme design, plugin creation, and PHP scripting. Contact me for more information.

Updated Sunday, February 22nd, 2009 at 8:20pm

Show the Intro to Password Protected Posts in WordPress

This is a small hack for WordPress that allows you to show the first part of password protected posts. It will display the content you have before the ‘more’ tag, followed by the standard password box. I wrote this up for a member of the WordPress forum, and I thought I would share it here. Update: Instructions are now provided for WordPress 2.2

Before you begin

The instructions below have been verified in WordPress versions 2.0 through 2.7. The only difference between these versions is the file you have to edit.

Instructions

For WordPress 2.0 or 2.1, open /wp-includes/template-functions-post.php

For WordPress 2.2 through 2.7+, open /wp-includes/post-template.php

Find the following text:

$output = get_the_password_form();
return $output;

Replace it with this:

$content = $pages[$page-1];
$content = explode('<!--more-->', $content, 2);
$output = "";
$output .= $content[0];
$output .= get_the_password_form();
return $output;

This next step is optional, but I think it makes it nicer.

In the get_the_password_form function, find the following text (may vary between versions):

This post is password protected.

And replace it with this:

The rest of this post is password protected.

Or whatever text you would like it to show.

If you have found this page useful, please consider donating. Thanks!

Pages: [2] 1 » Show All

  1. How much time this password is in memory?

    When it will ask me for the password again?

    (Sorry my english, I’m from Argentina)

  2. useful hack trick, thanks.

    BTW, can I use this hack on blogs hosted on wordpress.com?

  3. it will display the content you have before the ‘more’ tag …

    what hack do you do to display ‘an excerpt’ of the first 30 words?

  4. This code modification has been tested in the latest release of WordPress (2.7.1)

  5. Thank you for this trick !!
    I’ve used it on a Wp 2.7 blog, and it works!
    Bye,
    Massimo

  6. 19
    whoopeedo

    Hey there,

    Instructions

    For WordPress 2.0 or 2.1, open /wp-includes/template-functions-post.php

    For WordPress 2.2 or 2.3, open /wp-includes/post-template.php

    it says to open those templates, I’m sorry but I’m an ameteur at this, how do I open them ?

  7. 18
    Willy

    Is this hack still works with release 2.7 Wordpress? THanks

  8. 17
    capdase

    how can i make it work? :((

  9. Wonderful hack! I’m using it. Thank you.

Pages: [2] 1 » Show All

Leave a Comment

Before you comment: If you are having an issue with a script, please make sure you have read the entire article. Also, please read through the comments because most common issues have already been discussed many times. Thanks.


Be sure to wrap all code in <code></code> tags.