-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformat-link.php
More file actions
26 lines (24 loc) · 885 Bytes
/
format-link.php
File metadata and controls
26 lines (24 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* Template for link posts.
*
* @package Fixed Child
* @since 1.0
*/
if ( has_post_thumbnail() ) : ?>
<a class="featured-image" href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'large-image' ); ?></a>
<?php endif; ?>
<div class="box-wrap">
<div class="box">
<div class="format-link post-content">
<header>
<?php if( is_single() ) : ?>
<h1 class="entry-title"><a href="<?php echo get_post_meta($post->ID, '_format_link_url', true); ?>"><?php the_title(); ?></a></h1>
<?php else : ?>
<h2 class="entry-title"><a href="<?php echo get_post_meta($post->ID, '_format_link_url', true); ?>"><?php the_title(); ?></a></h2>
<?php endif; ?>
</header>
<?php the_content(); ?>
</div><!-- .post-content -->
</div><!-- .box -->
</div><!-- .box-wrap -->