Login to read more

plugin banner

Display content enclosed by the shortcode for registered users only.

Author:Takayuki Miyauchi (profile at wordpress.org)
WordPress version required:3.5
WordPress version tested:3.5.2
Plugin version:0.2.0
Added to WordPress repository:26-06-2013
Last updated:27-06-2013
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:100
Rated by:1
Plugin URI:http://wpist.me/
Total downloads:3 509
Active installs:50+
plugin download
Click to start download

Display content enclosed by the shortcode for registered users only.

[auth]This content will display for registered users only[/auth]

https://github.com/miya0001/login-to-read-more

Arguments

  • class - Class name for css. default value is "btn btn-primary btn-large"
  • href - Link URL for button. default value is login url for your site
  • text - Button text. default value is "Login to read more"

The following will add a class as argument.

Example: [auth class="foo"]
Output: <a class="foo" ...>...</a>

The following will change url link.

Example: [auth href="http://example.com/xxx/"]
Output: <a href="http://example.com/xxx/" ...>...</a>

The following will change text.

Example: [auth text="Join"]
Output: <a ...>Join</a>

Filter Hook

  • login_to_read_more_class - Change default class.
  • login_to_read_more_href - Change default url.
  • login_to_read_more_text - Change default text.

The following is example for "login_to_read_more_text" filter.

add_filter('login_to_read_more_text', 'my_login_to_read_more_text');
function my_login_to_read_more_text(){
    return 'Join';
}

Screenshots