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에서 보여지는 제목들을 수정하고 싶으면
위와 같이 커스텀 해주면 된다.
반응형