HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/next-saturday/content-link.php
<?php
/**
 * @package Next_Saturday
 */
?>

<article id="post-<?php the_ID(); ?>" <?php post_class( 'post' ); ?>>

	<?php next_saturday_entry_date(); ?>

	<div class="entry-container">

		<!-- Grab the first link and put an elevated box behind it -->
		<div class="highlight-box">
			<header class="entry-header">
				<?php
					// Let's find the first url in the post content.
					$link_url = next_saturday_url_grabber();

					// Let's make the title a link if there's a link in this link post
					if ( ! empty( $link_url ) ) :
				?>
				<h1 class="post-title"><a href="<?php echo esc_url( $link_url ); ?>"><?php the_title(); ?></a> <?php _e( '&rarr;', 'next-saturday'); ?></h1>
				<?php else : ?>
				<h1 class="post-title"><?php the_title(); ?></h1>
				<?php endif; ?>

			</header><!-- .entry-header -->
		</div><!-- .highlight-box -->

		<?php
		// Sometimes links need descriptions and sometimes they don't ...

		// Let's compare the length of the first url with the length of the post content.
		// If they're one and the same we don't really need to show the post content BECAUSE ...
		// that's just a url and we're already using that url as a href for the title link above BUT ...
		// if they're NOT the same I think we should show that content.
		if ( strlen( $link_url ) != strlen( get_the_content() ) ) :

			// Let's make any bare URL a clickable link, too.
			add_filter( 'the_content', 'make_clickable' );
		?>
		<div class="entry-content">
			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'next-saturday' ) ); ?>
			<?php wp_link_pages( array( 'before' => '<div class="page-link"><p>' . __( 'Pages:', 'next-saturday' ), 'after' => '</p></div>' ) ); ?>
		</div><!-- .entry-content -->
		<?php endif; ?>

		<div class="entry-meta-wrap">
			<div class="entry-meta">
				<span class="comments-num"><?php comments_popup_link( __( 'Leave a comment', 'next-saturday' ), __( '1 Comment', 'next-saturday' ), __( '% Comments', 'next-saturday' ) ); ?></span>
				<?php edit_post_link( __( 'Edit', 'next-saturday' ), '<span class="edit-link">', '</span>' ); ?>
			</div>
		</div>

	</div><!-- .entry-container -->
</article><!-- #post-## -->