Created
June 18, 2021 04:30
-
-
Save WPVNdev/caaa5457bf30966d1b69108faad1126b to your computer and use it in GitHub Desktop.
Thiết lập mặc định hình thumbnail cho tất cả các bài viết, nếu ko có sẽ lấy hình đầu tiên trong nội dung hoặc hình mặc định được thiết lập sẵn
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
<?php | |
// Thiết lập mặc định hình thumbnail cho tất cả các bài viết, nếu ko có sẽ lấy hình đầu tiên trong nội dung hoặc hình mặc định được thiết lập sẵn | |
function defaultPostThumbnail($thumbnail) | |
{ | |
global $post; | |
// Upload file default.jpg vào thư mục /images của theme đang sử dụng thì uncomment dòng bên dưới | |
// $defaultThumbnail = sprintf('<img src="%s/images/default.jpg" alt="%s" class="default-thumbnail" />', get_bloginfo('template_directory'), get_the_title()); | |
// hoặc sử dụng đường dẫn tuyệt đối: | |
$defaultThumbnail = sprintf('<img src="http://wpvndev.test/wp-content/uploads/woocommerce-placeholder.png" alt="%s" class="default-thumbnail" />', get_the_title()); | |
if ($thumbnail) { | |
$defaultThumbnail = $thumbnail; | |
} else { | |
preg_match('/<img.*?>/i', $post->post_content, $images); | |
if (!empty($images[0])) { | |
$defaultThumbnail = $images[0]; | |
} | |
} | |
return $defaultThumbnail; | |
} | |
add_filter('has_post_thumbnail', '__return_true'); | |
add_filter('post_thumbnail_html', 'defaultPostThumbnail', 10, 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment