
內容簡介
Codifigata - Content Login Gate 讓您可以限制文章或頁面的整個內容,或僅限制部分內容(例如下載按鈕),僅對已登入的使用者可見,並在受限內容的位置顯示登入按鈕給未登入的訪客。
【主要功能】
• 限制整個內容或特定區域
• 兩種顯示模式:模糊或隱藏內容
• 自訂按鈕顏色和標籤
• 自動登入後重定向回原內容
• 支援多種文章類型
外掛標籤
開發者團隊
② 後台搜尋「Codifigata – Content Login Gate」→ 直接安裝(推薦)
原文外掛簡介
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 use redirect_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_height and label shortcode 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;
} );
