Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('wpseo_canonical', 'my_wpseo_canonical');
- function my_wpseo_canonical($canonical) {
- if (is_paged()) {
- if (is_home()) {
- return home_url();
- }
- if (is_archive()) {
- $url = get_category_link(get_queried_object_id());
- return $url;
- }
- }
- return $canonical;
- }
Advertisement
Comments
-
- canonical cho các subpage xem chi tiết tại https://luuhoangphong.com/cach-chan-google-index-phan-trang-page-2-page-3/
Add Comment
Please, Sign In to add comment