BACK TO DIRECTORY

Codifigata – Content Login Gate lets you restrict the entire content of a post/page, or just part of it (for example download buttons), to logged-in users, showing a login button to logged-out visitors in place of the restricted content.
Two usage modes
- Gate the entire content — enable it with a simple checkbox in the “Restricted access” meta box, shown in the editor sidebar for posts and pages.
- Gate a specific area — using the
[cdfg_login_gate]...[/cdfg_login_gate]shortcode, which can be added in the Gutenberg “Shortcode” block. Useful for hiding only one section of the content (e.g. download buttons) while keeping the rest of the post visible.
Two display modes (Settings Content Login Gate)
- Blur the content — the content stays in the page but is visually blurred via CSS, with an overlay and a login button. Effective as a preview/registration nudge, but it is not real protection: anyone who views the page source can still read the content.
- Hide the content — the restricted content is not included in the HTML sent to logged-out users: only the login button appears on the page. Recommended for genuinely sensitive content (download links, private information, etc.).
Features
- Works right after activation, with sensible defaults.
- Settings page with a color picker to customize the button’s background color, text color, and label, without writing code.
- CSS is only loaded on pages where the gate is actually active (no impact on pages without restricted content).
- Login button URL: defaults to the standard WordPress login page (
wp-login.php), with an optional field in Settings to point it to a custom login page instead, plus automatic redirect back to the original content after login (the redirect parameter name is also configurable, for custom login pages that don’t useredirect_to). - Optional FontAwesome icon before the button label, if FontAwesome is already loaded by your theme or another plugin.
- Supported post types customizable via a PHP filter.
min_heightandlabelshortcode attributes to customize each individual restricted area.
Developer filters
cdfg_clg_login_url (string $login_url, string $redirect)
Filters the base URL of the login page. Default: wp_login_url(), or the URL set in Settings Content Login Gate if not empty.
cdfg_clg_button_label (string $label)
Filters the default label of the login button.
cdfg_clg_post_types (array $post_types)
Filters the list of post types on which the “Restricted access” meta box is shown. Default: array( 'post', 'page' ).
Example:
add_filter( 'cdfg_clg_login_url', function( $url, $redirect ) {
return home_url( '/sign-in/' );
}, 10, 2 );
add_filter( 'cdfg_clg_post_types', function( $post_types ) {
$post_types[] = 'product';
return $post_types;
} );
Plugin Details
Active Installs
0Total Downloads
230Version
1.5.0Requires WP
5.8Requires PHP
7.4Tested Up To
7.1Added
2026-07-24Last Updated
2026-08-14 5:57pm GMTRatings
5
0
4
0
3
0
2
0
1
0