Bỏ qua cache css trên wordpress
23/07/2024
10/02/2023 - 196
function catch_that_image() { global $post, $posts; $first_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); $first_img = $matches [1] [0]; if(empty($first_img)){ //Defines a default image $first_img = "/images/default.jpg"; //Duong dan anh mac dinh khi khong tim duoc anh dai dien } return $first_img; }
Cách sử dùng: Chèn đoạn code nào vào khu vực muốn hiển thị hình đại diện.
<img src=”<?php echo catch_that_image() ?>” />