astra_get_blog_post_title_meta()
Blog post Thumbnail
Description
Source
File: inc/blog/blog.php
function astra_get_blog_post_title_meta() {
// Blog Post Title and Blog Post Meta.
do_action( 'astra_archive_entry_header_before' );
?>
<header class="entry-header">
<?php
do_action( 'astra_archive_post_title_before' );
/* translators: 1: Current post link, 2: Current post id */
astra_the_post_title(
sprintf(
'<h2 class="entry-title" %2$s><a href="%1$s" rel="bookmark">',
esc_url( get_permalink() ),
astra_attr(
'article-title-blog',
array(
'class' => '',
)
)
),
'</a></h2>',
get_the_id()
);
do_action( 'astra_archive_post_title_after' );
?>
<?php
do_action( 'astra_archive_post_meta_before' );
astra_blog_get_post_meta();
do_action( 'astra_archive_post_meta_after' );
?>
</header><!-- .entry-header -->
<?php
do_action( 'astra_archive_entry_header_after' );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 1.0.8 | Introduced. |