Ultimate Member 테마 – 훅: um_theme_footer

Ultimate Member 테마 – 훅: um_theme_footer

훅 유형: Action (동작)

설명 : <footer> div 사이에 콘텐츠를 추가합니다.

현재 후크 된 기능 :

um_theme_footer_widgets();
um_theme_footer_bottom_content();

사용법:

add_action( 'um_theme_footer', 'my_theme_footer' );

사용 예:

<?php
add_action( 'um_theme_footer', 'my_theme_footer' );

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

Source : footer.php 파일 28행에 있습니다.

원문: https://docs.ultimatemember.com/article/1425-umthemefooter

코멘트 제출

Don`t copy text!