Changeset 37135 for trunk/tests/phpunit/tests/general/template.php
- Timestamp:
- 03/30/2016 05:19:41 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/general/template.php
r36952 r37135 280 280 $this->_set_custom_logo(); 281 281 $home_url = get_home_url( $blog_id, '/' ); 282 $size = get_theme_support( 'custom-logo', 'size' ); 283 $size = $size ? $size : 'full'; 284 $image = wp_get_attachment_image( $this->custom_logo_id, $size, false, array( 285 'class' => "custom-logo attachment-$size", 286 'data-size' => $size, 282 $image = wp_get_attachment_image( $this->custom_logo_id, 'full', false, array( 283 'class' => 'custom-logo', 287 284 'itemprop' => 'logo', 288 285 ) ); … … 303 300 304 301 $this->_set_custom_logo(); 305 $size = get_theme_support( 'custom-logo', 'size' ); 306 $size = $size ? $size : 'full'; 307 $image = wp_get_attachment_image( $this->custom_logo_id, $size, false, array( 308 'class' => "custom-logo attachment-$size", 309 'data-size' => $size, 302 $image = wp_get_attachment_image( $this->custom_logo_id, 'full', false, array( 303 'class' => 'custom-logo', 310 304 'itemprop' => 'logo', 311 305 ) );
Note: See TracChangeset
for help on using the changeset viewer.