欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何保護WordPress網站?

林子帆2年前16瀏覽0評論

將下面的代碼加到你的當前主題的functons.php的適當位置: function coolwp_filter_password_protected_post_excerpt( $content ) { if ( post_password_required() ) $content = '這個頁面或者文章受密碼保護,請輸入密碼查看摘要內容.'; return $content;}add_filter( 'the_excerpt', 'coolwp_filter_password_protected_post_excerpt' );add_filter( 'the_content', 'coolwp_filter_password_protected_post_excerpt' ); 即可確保你的摘要和文章內容都不會在文章列表頁和文章詳情頁被非法查看,如果更完善的想保護自己的內容,Access Level Pro是不錯的選擇。