如果參考我之前的文章還是被爬,
我就來分享製作隱形版權簽名檔放在我們的文章裡面
第一種方法:
在你想+的地方,任意加上你的版權文獻
需加CSS的語法
如下
<div class="copyright";>@copyright MRcodingRoom<br>
<a href="https://mrcodingroom.freesite.host">觀看更多正版原始文章MRcoding筆記</a></div>
.copyright{
display:none;
}
第二種方法:
去修改WP function.php
// Add signature or ad after post content
function wpb_after_post_content($content){
if (is_single()) {
$content .= 'Your signature or ad code goes here';
}
return $content;
}
add_filter( "the_content", "wpb_after_post_content" );
//引用自https://www.wpbeginner.com/wp-tutorials/how-add-signature-ads-post-content-wordpress/
第三種方法:
安裝wp外掛
Insert Post Ads
手動安裝載點如下
Download
<div>@copyright MRcodingRoom<br>
<a href="https://mrcodingroom.freesite.host">觀看更多正版原始文章MRcoding筆記</a></div>
@copyright MRcodingRoom
觀看更多文章請點MRcoding筆記
觀看更多文章請點MRcoding筆記