post_excerpt_meta_box [ WordPress Function ]
post_excerpt_meta_box ( $post )
| Parameters: |
|
| Defined at: |
|
Benzer Fonksiyonlar: post_comment_meta_box, post_custom_meta_box, post_format_meta_box, post_tags_meta_box, post_submit_meta_box
Display post excerpt form fields.
Source
<?php
function post_excerpt_meta_box($post) {
?>
<label class="screen-reader-text" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt; // textarea_escaped ?></textarea>
<p><?php _e('Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="http://codex.wordpress.org/Excerpt" target="_blank">Learn more about manual excerpts.</a>'); ?></p>
<?php
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- WordPress › Support » Customize the excerpt meta box
function post_excerpt_meta_box($post) { ?> <label ... add_filter(' post_excerpt_meta_box','my_excerpt_box', 1, 2); function my_excerpt_box($post) { ?> <label ...
wordpress.org - metabox - Replace the Post Excerpt Meta Box with a Field in My ...
Dec 6, 2010 ... I've got a custom meta box for a custom post type which will be the only metabox I plan to show in the main column (except the native title box).
wordpress.stackexchange.com - PHPXRef 0.7 : WordPress : Detail view of meta-boxes.php
post_excerpt_meta_box() post_trackback_meta_box() ...
phpxref.ftwr.co.uk - meta-boxes.php - PHP Cross Reference of WordPress Source - Yoast
post_excerpt_meta_box() post_trackback_meta_box() ...
xref.yoast.com