diff -Naur wordpress-meta/wordcamp.org/public_html/wp-content/plugins/wc-post-types/wc-post-types.php wordpress-meta/wordcamp.org/public_html/wp-content/plugins/wc-post-types/wc-post-types.php
|
|
|
1235 | 1235 | <?php if ( 'visible' === $attr['title'] ) : ?> |
1236 | 1236 | <?php if ( 'website' === $attr['link'] && $website ) : ?> |
1237 | 1237 | <h3> |
1238 | | <a href="<?php echo esc_attr( esc_url( $website ) ); ?>"> |
| 1238 | <a href="<?php echo esc_url( $website ); ?>"> |
1239 | 1239 | <?php the_title(); ?> |
1240 | 1240 | </a> |
1241 | 1241 | </h3> |
1242 | 1242 | <?php elseif ( 'post' === $attr['link'] ) : ?> |
1243 | 1243 | <h3> |
1244 | | <a href="<?php echo esc_attr( esc_url( get_permalink() ) ); ?>"> |
| 1244 | <a href="<?php echo esc_url( get_permalink() ); ?>"> |
1245 | 1245 | <?php the_title(); ?> |
1246 | 1246 | </a> |
1247 | 1247 | </h3> |
… |
… |
|
1254 | 1254 | |
1255 | 1255 | <div class="wcorg-sponsor-description"> |
1256 | 1256 | <?php if ( 'website' == $attr['link'] && $website ) : ?> |
1257 | | <a href="<?php echo esc_attr( esc_url( $website ) ); ?>"> |
| 1257 | <a href="<?php echo esc_url( $website ); ?>"> |
1258 | 1258 | <?php the_post_thumbnail( 'wcb-sponsor-logo-horizontal-2x', array( 'alt' => get_the_title() ) ); ?> |
1259 | 1259 | </a> |
1260 | 1260 | <?php elseif ( 'post' == $attr['link'] ) : ?> |
1261 | | <a href="<?php echo esc_attr( esc_url( get_permalink() ) ); ?>"> |
| 1261 | <a href="<?php echo esc_url( get_permalink() ); ?>"> |
1262 | 1262 | <?php the_post_thumbnail( 'wcb-sponsor-logo-horizontal-2x', array( 'alt' => get_the_title() ) ); ?> |
1263 | 1263 | </a> |
1264 | 1264 | <?php else : ?> |