Ultimate Member 테마 – 훅: um_theme_before_site

Ultimate Member 테마 – 훅: um_theme_before_site

훅 유형: Action (동작)

설명 : #page div 앞에 콘텐츠를 추가하세요.

현재 후크 된 기능 :

um_theme_output_header_code();

사용법:

add_action( 'um_theme_before_site', 'um_theme_core_header' );

사용 예:

<?php
add_action( 'um_theme_before_site', 'my_theme_header' );

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

Source : header.php 파일 19행에 있습니다.

원문: https://docs.ultimatemember.com/article/1416-umthemebeforesite

코멘트 제출

Don`t copy text!