PluginProbe
Edit Flow / 0.8.2
Edit Flow v0.8.2
0.11.1 0.11.0 0.7.2 0.7.3 0.7.4 0.7.5 0.7.6 0.8 0.8.1 0.8.2 0.9 0.9.1 0.9.2 0.9.3 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 trunk 0.1.5 0.10.0 0.10.1 0.10.2 All 44 releases
edit-flow / common / php / util.php

util.php in Edit Flow 0.8.2, at common/php/util.php

16 lines 528 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if( ! function_exists( 'ef_draft_or_post_title' ) ) :
4 /**
5 * Copy of core's _draft_or_post_title without the filters
6 *
7 * The post title is fetched and if it is blank then a default string is
8 * returned.
9 * @param int $post_id The post id. If not supplied the global $post is used.
10 * @return string The post title if set
11 */
12 function ef_draft_or_post_title( $post_id = 0 ) {
13 $post = get_post( $post_id );
14 return ! empty( $post->post_title ) ? $post->post_title : __( '(no title)', 'edit-flow' );
15 }
16 endif;