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