Changeset 50797
- Timestamp:
- 04/28/2021 08:53:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-pages.php
r48410 r50797 62 62 } 63 63 64 $out = wp_list_pages(64 $output = wp_list_pages( 65 65 /** 66 66 * Filters the arguments for the Pages widget. … … 86 86 ); 87 87 88 if ( ! empty( $out ) ) {88 if ( ! empty( $output ) ) { 89 89 echo $args['before_widget']; 90 90 if ( $title ) { … … 106 106 107 107 <ul> 108 <?php echo $out ; ?>108 <?php echo $output; ?> 109 109 </ul> 110 110
Note: See TracChangeset
for help on using the changeset viewer.