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 | |
/* Dùng 1 trong 2 cách bên dưới */ | |
// Cách 1: | |
// 1 query nhưng sẽ gặp lỗi phân trang ở page cuối cùng | |
function numberOfPostsToRemove($query) | |
{ | |
$numOfPosts = 4; |
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 | |
// Thêm hiển thị số tiền giảm giá ở trang chi tiết sản phẩm nằm phía dưới giá sản phẩm | |
function customVariableSavedPricing($priceHtml, $product) | |
{ | |
if (strpos($priceHtml, 'del') !== false) { | |
$savedPrice = number_format($product->get_regular_price() - $product->get_sale_price(), 2, '.', ','); | |
$youSaved = sprintf( |
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()); |
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 | |
function removeCategoryNameInBlogPostPage($category) | |
{ | |
if (is_home()) { | |
return false; | |
} | |
return $category; | |
} |