Changeset 8547
- Timestamp:
- 08/05/2008 06:40:44 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post-template.php
r8012 r8547 75 75 } 76 76 77 function the_content($more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {77 function the_content($more_link_text = NULL, $stripteaser = 0, $more_file = '') { 78 78 $content = get_the_content($more_link_text, $stripteaser, $more_file); 79 79 $content = apply_filters('the_content', $content); … … 83 83 84 84 85 function get_the_content($more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {85 function get_the_content($more_link_text = NULL, $stripteaser = 0, $more_file = '') { 86 86 global $id, $post, $more, $page, $pages, $multipage, $preview, $pagenow; 87 88 if ( NULL == $more_link_text ) 89 $more_link_text = __( '(more...)' ); 87 90 88 91 $output = '';
Note: See TracChangeset
for help on using the changeset viewer.