« Back to History
content-home.php
|
20260920_164915.php
Initial Domain Snapshot
Copy Code
<?php /** * @package SKT Full Width */ ?> <div class="article-wrapper"> <article id="post-<?php the_ID(); ?>" <?php post_class('homepage-article'); ?>> <div class="featured-image"> <?php if (has_post_thumbnail()) : ?> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('homepage-thumb'); ?></a> <?php else: ?> <a href="<?php the_permalink(); ?>"><img src="<?php echo get_stylesheet_directory_uri()."/images/dthumb.jpg"; ?>"></a> <?php endif; ?> </div> <header class="entry-header"> <?php if (strlen(get_the_title()) >= 85) { ?> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" data-title="<?php the_title(); ?>" rel="bookmark"> <?php echo substr(get_the_title(), 0, 84)."..."; } else { ?> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"> <?php the_title(); } ?> </a></h1> </header><!-- .entry-header --> </article><!-- #post-## --> </div>