get_the_title_rss [ WordPress Function ]
get_the_title_rss ( No parameters )
| Uses: | |
| Returns: |
|
| Defined at: |
|
Retrieve the current post title for the feed.
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/get the title rss « WordPress Codex
Description. Retrieve the current post title for the feed. Usage. <?php get_the_title_rss() ?> Parameters. None. Return Values. (string): Current post title .
codex.wordpress.org - Docs for page feed.php
get_the_title_rss (line 115). Retrieve the current post title for the ... since: 0.71; uses: get_the_title_rss() - Used to retrieve current post title. void the_title_rss () ...
phpdoc.wordpress.org - get_the_title_rss | A HitchHackers guide through WordPress
Feb 12, 2011 ... Source code. function get_the_title_rss() { $title = get_the_title(); $title = apply_filters('the_title_rss', $title); return $title; }. 1861 ...
hitchhackerguide.com - 常用函数-get_the_title_rss() | WordPress啦!
Kage 星期二,2009/04/07 15:56 0条评论. 常用函数-get_the_title_rss(). 说明. 为 feed检索当前文章的标题. 用法. <?php get_the_title_rss() ?> 参数. 无. 返回的值 ...
www.wordpress.la