Changeset 50702
- Timestamp:
- 04/12/2021 10:32:11 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-reading.php
r49287 r50702 31 31 '<p>' . sprintf( 32 32 /* translators: %s: Documentation URL. */ 33 __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or a summary. <a href="%s">Learn more about feeds</a>.' ),33 __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. <a href="%s">Learn more about feeds</a>.' ), 34 34 __( 'https://wordpress.org/support/article/wordpress-feeds/' ) 35 35 ) . '</p>' . … … 162 162 <p> 163 163 <label><input name="rss_use_excerpt" type="radio" value="0" <?php checked( 0, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( 'Full text' ); ?></label><br /> 164 <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked( 1, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( ' Summary' ); ?></label>164 <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked( 1, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( 'Excerpt' ); ?></label> 165 165 </p> 166 166 <p class="description">
Note: See TracChangeset
for help on using the changeset viewer.