Ultimate Member 테마 – 훅: um_theme_single_post_top

Ultimate Member 테마 – 훅: um_theme_single_post_top

훅 유형: Action (동작)

설명 : 단일 게시물 유형 <article> div 사이에 일부 콘텐츠를 추가합니다.

현재 후크 된 기능 :

um_theme_single_post_print_featured_image();

사용법:

add_action( 'um_theme_single_post_top', 'my_theme_post' );

사용 예:

<?php
add_action( 'um_theme_single_post_top', 'my_theme_post' );

function my_theme_post() { 
	// 여기에 코드 내용 넣기;
 } 
?>

Source : content-single.php 파일 14행에 있습니다.

원문: https://docs.ultimatemember.com/article/1420-umthemesingleposttop

코멘트 제출

Don`t copy text!