Ticket #18561: the_rest.diff
| File the_rest.diff, 538 bytes (added by helenyhou, 9 months ago) |
|---|
-
post-template.php
241 241 } 242 242 243 243 /** 244 * Display the rest of a post's extra content. 245 * 246 * @since 3.3.0 247 * @uses do_action() Does before_the_rest and after_the_rest in addition to the_rest. 248 */ 249 function the_rest() { 250 do_action( 'before_the_rest' ); 251 do_action( 'the_rest' ); 252 do_action( 'after_the_rest' ); 253 } 254 255 /** 244 256 * Display the post excerpt. 245 257 * 246 258 * @since 0.71
