EunsooD

the_title_rss() 본문

STUDY/Wordpress

the_title_rss()

EunsooD 2019. 1. 17. 10:32
반응형


https://developer.wordpress.org/reference/functions/the_title_rss/


RSS를 출력 할 때 제목을 불러오는 함수이다.


function custom_feed_title($title) {

return $title;

}

add_filter('the_title_rss', 'custom_feed_title');


RSS에서 보여지는 제목들을 수정하고 싶으면

위와 같이 커스텀 해주면 된다.

반응형

'STUDY > Wordpress' 카테고리의 다른 글

워드프레스 간단하게 자신만의 RSS 생성하기  (4) 2019.01.18
Comments