Add post meta, styling tweaks, massive linting

This commit is contained in:
Ben Goldsworthy 2021-01-22 16:19:51 +00:00
parent 25e0067f05
commit 428552848f
27 changed files with 666 additions and 2177 deletions

View file

@ -1,16 +1,24 @@
<?php
/**
* The template part for displaying content.
*
* @package WordPress
* @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0
*/
/**
* The template part for displaying content.
*
* @package Omphaloskepsis
* @since Omphaloskepsis 1.0
*/
?>
<a class="item" href="<?php echo ( $link = get_post_meta( get_the_ID(), 'External_Link', true ) ) ? $link : get_the_permalink(); ?>" <?php echo ( $link ) ? 'target="_blank"' : ''; ?>>
<article id="post-<?php the_ID(); ?>" class="tile col-m-6 col-4 col-w-3" style="background-image: url('<?php the_post_thumbnail_url(); ?>');">
<?php
<?php
// For Posts with a) a single external link and b) no body content, just make
// the item link directly to the external resource.
$has_one_external_link = count( get_post_meta( get_the_ID(), 'External_Link', false ) ) === 1;
$has_body_content = ! ! get_the_content();
$links_externally = $has_one_external_link && ! $has_body_content;
$post_link = ( $links_externally ) ? get_post_meta( get_the_ID(), 'External_Link', true ) : get_the_permalink();
?>
<a class="item" href="<?php echo esc_url( $post_link ); ?>"<?php echo ( $links_externally ) ? ' target="_blank" rel="noopener noreferrer"' : ''; ?>>
<article id="post-<?php the_ID(); ?>" class="tile col-m-6 col-4 col-w-3" style="background-image: url('<?php the_post_thumbnail_url(); ?>');">
<?php
if ( strlen( get_the_title() ) > 70 ) {
$small = 'vsmall';
} elseif ( strlen( get_the_title() ) > 35 ) {
@ -19,11 +27,18 @@
$small = 'qsmall';
}
?>
<header>
<h1 class="<?php echo $small; ?> post-title"><?php echo get_the_title(); ?></h1>
<?php if ( $subtitle = get_post_meta( get_the_ID(), 'Subtitle', true ) ) : ?>
<h2><?php echo $subtitle; ?></h2>
<?php endif; ?>
</header>
</article><!-- #post-## -->
<header>
<h1 class="<?php echo esc_attr( $small ); ?> post-title">
<?php echo wp_kses_post( get_the_title() ); ?>
</h1>
<?php
$subtitle = get_post_meta( get_the_ID(), 'Subtitle', true );
if ( $subtitle ) :
?>
<h2>
<?php echo wp_kses_post( $subtitle ); ?>
</h2>
<?php endif; ?>
</header>
</article><!-- #post-## -->
</a>