WordPress_php 팁의 썸네일 디버깅을 위한 관련 PHP 함수 분석
the_post_thumbnail
the_post_thumbnail은 주로 WordPress에서 기사에 설정된 썸네일을 인쇄하는 데 사용되며, get_the_post_thumbnail 함수는 필요한 HTML 코드를 문자열 형식으로 반환할 수 있습니다.
_포스트_썸네일 기능 활용
the_post_thumbnail( $size , $attr)
함수 매개변수
- $size는 원하는 썸네일 유형을 의미하며, 기본값은 추천 이미지인 'post-thumbnail'입니다.
- 이미지 img 태그의 $attr 속성 설정.
the_post_thumbnail 함수 선언
/** * Display Post Thumbnail. * * @since 2.9.0 * * @param int $size Optional. Image size. Defaults to 'post-thumbnail', which theme sets using set_post_thumbnail_size( $width, $height, $crop_flag );. * @param string|array $attr Optional. Query string or array of attributes. */ function the_post_thumbnail( $size = 'post-thumbnail', $attr = '' ) { echo get_the_post_thumbnail( null, $size, $attr ); } get_the_post_thumbnail 函数声明 * Retrieve Post Thumbnail. * * @since 2.9.0 * * @param int $post_id Optional. Post ID. * @param string $size Optional. Image size. Defaults to 'post-thumbnail'. * @param string|array $attr Optional. Query string or array of attributes. */ function get_the_post_thumbnail( $post_id = null, $size = 'post-thumbnail', $attr = '' ) { $post_id = ( null === $post_id ) ? get_the_ID() : $post_id; $post_thumbnail_id = get_post_thumbnail_id( $post_id ); $size = apply_filters( 'post_thumbnail_size', $size ); if ( $post_thumbnail_id ) { do_action( 'begin_fetch_post_thumbnail_html', $post_id, $post_thumbnail_id, $size ); // for "Just In Time" filtering of all of wp_get_attachment_image()'s filters if ( in_the_loop() ) update_post_thumbnail_cache(); $html = wp_get_attachment_image( $post_thumbnail_id, $size, false, $attr ); do_action( 'end_fetch_post_thumbnail_html', $post_id, $post_thumbnail_id, $size ); } else { $html = ''; } return apply_filters( 'post_thumbnail_html', $html, $post_id, $post_thumbnail_id, $size, $attr );
set_post_thumbnail_size
set_post_thumbnail_size 함수는 추천 이미지의 크기를 설정하는 WordPress의 함수로, add_image_size 함수를 간단히 응용한 것입니다. 추천 이미지의 사용을 더 잘 강조하기 위해 WordPress 버전 2.9.0부터 이 기능이 포함되었습니다.
set_post_thumbnail_size 함수 사용법
이 함수는 추천 이미지에만 설정된다는 점을 제외하면 add_image_size 함수와 거의 유사합니다.
set_post_thumbnail_size( $width, $height, $crop)
매개변수에 대한 자세한 설명
- $width 이미지 너비
- $height 이미지 높이
- $crop 이미지를 높이와 너비에 따라 자를지 여부
예
set_post_thumbnail_size(100,0,true);
참고: 높이 또는 너비가 0이면 WP는 썸네일 생성을 위해 다른 값에 자동으로 적응합니다.
함수 선언
/** * Registers an image size for the post thumbnail * * @since 2.9.0 */ function set_post_thumbnail_size( $width = 0, $height = 0, $crop = false ) { add_image_size( 'post-thumbnail', $width, $height, $crop );

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











이번 장에서는 CakePHP의 환경 변수, 일반 구성, 데이터베이스 구성, 이메일 구성에 대해 알아봅니다.

PHP 8.4는 상당한 양의 기능 중단 및 제거를 통해 몇 가지 새로운 기능, 보안 개선 및 성능 개선을 제공합니다. 이 가이드에서는 Ubuntu, Debian 또는 해당 파생 제품에서 PHP 8.4를 설치하거나 PHP 8.4로 업그레이드하는 방법을 설명합니다.

CakePHP는 PHP용 오픈 소스 프레임워크입니다. 이는 애플리케이션을 훨씬 쉽게 개발, 배포 및 유지 관리할 수 있도록 하기 위한 것입니다. CakePHP는 강력하고 이해하기 쉬운 MVC와 유사한 아키텍처를 기반으로 합니다. 모델, 뷰 및 컨트롤러 gu

CakePHP에서 데이터베이스 작업은 매우 쉽습니다. 이번 장에서는 CRUD(생성, 읽기, 업데이트, 삭제) 작업을 이해하겠습니다.
