Changeset 57275
- Timestamp:
- 01/12/2024 07:10:28 PM (11 months ago)
- Location:
- trunk/src/wp-content/themes/twentyseventeen
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyseventeen/inc/icon-functions.php
r55988 r57275 131 131 if ( 'social' === $args->theme_location ) { 132 132 foreach ( $social_icons as $attr => $value ) { 133 if ( str_contains( $item_output, $attr ) ) {133 if ( false !== strpos( $item_output, $attr ) ) { 134 134 $item_output = str_replace( $args->link_after, '</span>' . twentyseventeen_get_svg( array( 'icon' => esc_attr( $value ) ) ), $item_output ); 135 135 } -
trunk/src/wp-content/themes/twentyseventeen/template-parts/post/content-audio.php
r55988 r57275 47 47 48 48 // Only get audio from the content if a playlist isn't present. 49 if ( ! str_contains( $content, 'wp-playlist-script' ) ) {49 if ( false === strpos( $content, 'wp-playlist-script' ) ) { 50 50 $audio = get_media_embedded_in_content( $content, array( 'audio' ) ); 51 51 } -
trunk/src/wp-content/themes/twentyseventeen/template-parts/post/content-video.php
r55988 r57275 47 47 48 48 // Only get video from the content if a playlist isn't present. 49 if ( ! str_contains( $content, 'wp-playlist-script' ) ) {49 if ( false === strpos( $content, 'wp-playlist-script' ) ) { 50 50 $video = get_media_embedded_in_content( $content, array( 'video', 'object', 'embed', 'iframe' ) ); 51 51 }
Note: See TracChangeset
for help on using the changeset viewer.