Ultimate Member 테마 – 훅: um_theme_before_comments

Ultimate Member 테마 – 훅: um_theme_before_comments

훅 유형: Action (동작)

설명 : 댓글 섹션이 시작되기 전에 콘텐츠를 추가합니다.

현재 후크 된 기능 :

해당 사항 없음

사용법:

add_action( 'um_theme_before_comments', 'my_theme_footer' );

사용 예:

<?php
add_action( 'um_theme_before_comments', 'my_comments_title' );

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

Source : comments.php 파일 24행에 있습니다.

원문: https://docs.ultimatemember.com/article/1430-umthemebeforecomments

코멘트 제출

Don`t copy text!