get_the_excerpt [ WordPress Function ]
get_the_excerpt ( $deprecated = '' )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: the_excerpt, get_comment_excerpt, get_the_generator, the_excerpt_rss, get_the_terms
Retrieve the post excerpt.
Source
<?php
function get_the_excerpt( $deprecated = '' ) {
if ( !empty( $deprecated ) )
_deprecated_argument( __FUNCTION__, '2.3' );
global $post;
$output = $post->post_excerpt;
if ( post_password_required($post) ) {
$output = __('There is no excerpt because this is a protected post.');
return $output;
}
return apply_filters('get_the_excerpt', $output);
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- get_the_excerpt() - WordPress Codex
Description. Returns the post excerpt for assignment to a variable. This tag must be within The Loop. If you only wish to print the excerpt you may prefer to use ...
codex.wordpress.org - WordPress › Support » Tags — get_the_excerpt()
(forgot?) Register · WordPress › Support » get_the_excerpt() ...
wordpress.org - How to get attachment caption (get_the_excerpt gives parent post ...
Oct 28, 2011 ... I am displaying the attachments on the parent post page with this code : $args = array('post_type' => 'attachment', 'post_mime_type' => 'image', ...
wordpress.stackexchange.com - Custom Excerpt Function using get_the_excerpt(); | Custom ...
Mar 13, 2012 ... After looking for a solution (and failing to find one) to specify a length and link text to the get_the_excerpt() function in WordPress, I wrote a ...
www.wyliehobbs.com
Kullanýcý Tartýþmalarý [ wordpress.org ]
- alchymyth on "get_the_excerpt doesn't work on archives page?"
- esdali on "get_the_excerpt doesn't work on archives page?"
- Eli on "[Plugin: ELI's Related Posts Footer Links and Widget] Excerpts Wrong"
- Eli on "[Plugin: ELI's Related Posts Footer Links and Widget] Excerpts Wrong"
- Eli on "[Plugin: ELI's Related Posts Footer Links and Widget] Excerpts Wrong"
- ksullens on "[Plugin: ELI's Related Posts Footer Links and Widget] Excerpts Wrong"
- Eli on "[Plugin: ELI's Related Posts Footer Links and Widget] Excerpts Wrong"
- ksullens on "[Plugin: ELI's Related Posts Footer Links and Widget] Excerpts Wrong"
- wright_jamie on "get_the_excerpt not working in header"
- wright_jamie on "get_the_excerpt not working in header"