mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-07-02 01:01:18 +03:00
Theme: Add org logo to single pledge view
This commit is contained in:
parent
6771e352fe
commit
4bf4f9a1f0
|
@ -18,16 +18,18 @@ $report_page = get_page_by_path( 'report' );
|
||||||
|
|
||||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
|
<div class="">
|
||||||
<span>
|
<?php the_title( '<h2 class="entry-title">', '</h2>' ); ?>
|
||||||
<?php
|
<span>
|
||||||
printf(
|
<?php
|
||||||
'<a href="%1$s">%1$s</a>',
|
printf(
|
||||||
esc_url( $post->{'5ftf_org-url'} )
|
'<a href="%1$s">%1$s</a>',
|
||||||
);
|
esc_url( $post->{'5ftf_org-url'} )
|
||||||
?>
|
);
|
||||||
</span>
|
?>
|
||||||
<!-- TODO logo -->
|
</span>
|
||||||
|
</div>
|
||||||
|
<?php the_post_thumbnail( array( 288, 288 ) ); ?>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|
Loading…
Reference in a new issue