WordPress의 기본 REST API중 posts에는 따로 댓글의 카운트를 따로 뽑아주는 기능이 없어 검색해보니..역시나 누군가 만들어둔게 있어 퍼옵니다. WordPress /wp-content/themes/{사용 테마} 폴더의 functions.php에 추가후 확인
Category Archives: Wordpress
Custom Fields Part1.
WordPress에서는 글 작성시 Custom Fields를 이용하여 css를 작성하면 http://ilovetypography.com/같은 블로그처럼 포스팅마다 새로운 디자인의 페이지를 만들어 낼수가 있습니다. 사용하고 계신 Themes의 header.php파일을 열고 head안쪽으로 아래와 같이 소스를 추가해 줍니다. [html] <?php //Custom Fields if(is_single()) { $style = get_post_meta($post->ID, ‘_custom_style’, true); if($style) { ?> <style type="text/css" media="screen, print"> <?=$style?> </style> <?php } } ?> [/html] Themes를 수정하셨다면 …