1
A
回答
3
這是我的理解是,密碼保護的頁面/帖子使用相同的模板是常規頁面/帖子。如果您想更改標準信息「我的帖子是密碼保護的,請問我輸入密碼:」,請嘗試添加此代碼段(將文本更改爲您想要的內容)到您主題的function.php文件中:
function fb_the_password_form() {
global $post;
$label = 'pwbox-'.(empty($post->ID) ? rand() : $post->ID);
$output = '<form action="' . get_option('siteurl') . '/wp-login.php?action=postpass" method="post">
<p>' . __("My post is password protected. Please ask me for a password:") . '</p>
<p><label for="' . $label . '">' . __("Password") . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . esc_attr__("Submit") . '" /></p>
</form>';
return $output;
}
add_filter('the_password_form', 'fb_the_password_form');
-1
在二十三歲的小孩主題中,上述不起作用。相反,我用這個代碼(不幸的是,我不記得是誰寫的):
<?php
function my_password_form() {
global $post;
$label = 'pwbox-'.(empty($post->ID) ? rand() : $post->ID);
$o = '<form action="' . esc_url(site_url('wp-login.php?action=postpass', 'login_post')) . '" method="post">
' . __("Some custom statement here.\nAnd a second line:\n") . '
<label for="' . $label . '">' . __("Password:") . ' </label><input name="post_password" id="' . $label . '" type="password" size="20" maxlength="20" /><input type="submit" name="Submit" value="' . esc_attr__("Submit") . '" />
</form><p style="font-size:18px;margin:0px; padding: 8px; background: lightblue; height: 40px; width: 400px; text-align: center;">Some other text here</p>
';
return $o;
}
add_filter('the_password_form', 'my_password_form');
?>
相關問題
- 1. WordPress受保護頁面密碼Cookie
- 2. WordPress的密碼保護頁面實際上並沒有保護
- 3. wordpress密碼保護頁
- 4. 根據WordPress的頁面密碼密碼保護單個媒體文件
- 5. 如何在WordPress中使用自定義模板作爲密碼保護頁面?
- 6. 密碼保護獲取帖子的頁面模板?
- 7. WordPress的:密碼保護頁(2)
- 8. 密碼保護html頁面
- 9. 密碼保護頁面
- 10. 密碼保護的ExpressionEngine模板組
- 11. Cookie不適用於WordPress上的受密碼保護的頁面
- 12. 帶有側邊欄的密碼保護的WordPress頁面
- 13. WordPress保護頁面
- 14. 密碼保護Wordpress;只有首頁?
- 15. 記住登錄WordPress密碼保護頁
- 16. 閱讀受密碼保護的頁面
- 17. 網站上的密碼保護頁面
- 18. 密碼保護生成的PDF頁面
- 19. 受密碼保護的頁面
- 20. 特定頁面的密碼保護
- 21. AppMaker中受密碼保護的頁面
- 22. 如何列出WordPress的密碼保護頁面?
- 23. 從wordpress頁面排除受密碼保護的帖子
- 24. 如何在Wordpress上密碼保護帖子頁面?
- 25. recaptcha卡住在密碼保護頁面wordpress 4.8
- 26. 密碼保護Wordpress MU
- 27. 保護頁面模板文件或在MobileFirst中添加驗證
- 28. 密碼保護Elmah.axd文件
- 29. 密碼保護CSV文件
- 30. 使用.htaccess密碼保護頁面
代碼來自https://codex.wordpress.org/Using_Password_Protection – 2017-01-01 09:15:53