Created
December 18, 2019 08:31
-
-
Save manhleo93/9760ec91a6ed5011c3d1b76e65106324 to your computer and use it in GitHub Desktop.
affiliate link disclosure hướng dẫn tại: https://sampres.com/affiliate-link-disclosure-genesis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Thêm thông báo đầu bài viết. | |
add_action( 'genesis_before_entry_content', 'custom_affiliate_disclosure' ); | |
/** | |
* Add custom affiliate link disclosure notice above the content on single Posts. | |
*/ | |
function custom_affiliate_disclosure() { | |
// if this is not a single Post, abort. | |
if ( ! is_singular( 'post' ) ) { | |
return; | |
} ?> | |
<div class="affiliate-disclosure-notice"> | |
<p>Mẹo: Để mua sản phẩm trên digitrends.com.vn hãy nhấn chuột vào nút "Mua ngay" trong phần bảng so sánh giá hoặc "Mua SP với giá xxx₫" ở từng phẩn sản phẩm cuối bài để chuyển tới trang đặt hàng. | |
</p> | |
</div> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment