Changeset 48388
- Timestamp:
- 07/07/2020 05:04:05 PM (5 years ago)
- Location:
- trunk/src/wp-includes/widgets
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-archives.php
r48349 r48388 126 126 $format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml'; 127 127 128 /** 129 * Filters the HTML format of widgets with navigation links. 130 * 131 * @since 5.5.0 132 * 133 * @param string $format The type of markup to use in widgets with navigation links. 134 * Accepts 'html5', 'xhtml'. 135 */ 128 /** This filter is documented in wp-includes/widgets/class-wp-nav-menu-widget.php */ 136 129 $format = apply_filters( 'navigation_widgets_format', $format ); 137 130 -
trunk/src/wp-includes/widgets/class-wp-widget-categories.php
r48349 r48388 113 113 $format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml'; 114 114 115 /** 116 * Filters the HTML format of widgets with navigation links. 117 * 118 * @since 5.5.0 119 * 120 * @param string $format The type of markup to use in widgets with navigation links. 121 * Accepts 'html5', 'xhtml'. 122 */ 115 /** This filter is documented in wp-includes/widgets/class-wp-nav-menu-widget.php */ 123 116 $format = apply_filters( 'navigation_widgets_format', $format ); 124 117 -
trunk/src/wp-includes/widgets/class-wp-widget-meta.php
r48349 r48388 57 57 $format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml'; 58 58 59 /** 60 * Filters the HTML format of widgets with navigation links. 61 * 62 * @since 5.5.0 63 * 64 * @param string $format The type of markup to use in widgets with navigation links. 65 * Accepts 'html5', 'xhtml'. 66 */ 59 /** This filter is documented in wp-includes/widgets/class-wp-nav-menu-widget.php */ 67 60 $format = apply_filters( 'navigation_widgets_format', $format ); 68 61 -
trunk/src/wp-includes/widgets/class-wp-widget-pages.php
r48349 r48388 94 94 $format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml'; 95 95 96 /** 97 * Filters the HTML format of widgets with navigation links. 98 * 99 * @since 5.5.0 100 * 101 * @param string $format The type of markup to use in widgets with navigation links. 102 * Accepts 'html5', 'xhtml'. 103 */ 96 /** This filter is documented in wp-includes/widgets/class-wp-nav-menu-widget.php */ 104 97 $format = apply_filters( 'navigation_widgets_format', $format ); 105 98 -
trunk/src/wp-includes/widgets/class-wp-widget-recent-comments.php
r48349 r48388 127 127 $format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml'; 128 128 129 /** 130 * Filters the HTML format of widgets with navigation links. 131 * 132 * @since 5.5.0 133 * 134 * @param string $format The type of markup to use in widgets with navigation links. 135 * Accepts 'html5', 'xhtml'. 136 */ 129 /** This filter is documented in wp-includes/widgets/class-wp-nav-menu-widget.php */ 137 130 $format = apply_filters( 'navigation_widgets_format', $format ); 138 131 -
trunk/src/wp-includes/widgets/class-wp-widget-recent-posts.php
r48349 r48388 96 96 $format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml'; 97 97 98 /** 99 * Filters the HTML format of widgets with navigation links. 100 * 101 * @since 5.5.0 102 * 103 * @param string $format The type of markup to use in widgets with navigation links. 104 * Accepts 'html5', 'xhtml'. 105 */ 98 /** This filter is documented in wp-includes/widgets/class-wp-nav-menu-widget.php */ 106 99 $format = apply_filters( 'navigation_widgets_format', $format ); 107 100 -
trunk/src/wp-includes/widgets/class-wp-widget-rss.php
r48349 r48388 98 98 $format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml'; 99 99 100 /** 101 * Filters the HTML format of widgets with navigation links. 102 * 103 * @since 5.5.0 104 * 105 * @param string $format The type of markup to use in widgets with navigation links. 106 * Accepts 'html5', 'xhtml'. 107 */ 100 /** This filter is documented in wp-includes/widgets/class-wp-nav-menu-widget.php */ 108 101 $format = apply_filters( 'navigation_widgets_format', $format ); 109 102
Note: See TracChangeset
for help on using the changeset viewer.