Currently browsing tag

숫자

워드프레스에서 댓글 숫자 보여주기

functions.php에 아래 소스 추가 //포스트에서 댓글 숫자 가져오기 $num_comments = get_comments_number(); // get_comments_number returns only a numeric value if ( comments_open() ) { if ( $num_comments == 0 ) { $comments = __(‘No Comments’); } elseif ( $num_comments > 1 ) { $comments = $num_comments . __(‘ Comments’); } else …