at path:
ROOT
/
wp-content
/
themes
/
astra
/
inc
/
template-tags.php
run:
R
W
Run
abilities
DIR
2026-07-10 16:52:16
R
W
Run
addons
DIR
2026-07-10 16:52:16
R
W
Run
assets
DIR
2026-07-10 16:52:16
R
W
Run
blog
DIR
2026-07-10 16:52:16
R
W
Run
builder
DIR
2026-07-10 16:52:16
R
W
Run
compatibility
DIR
2026-07-10 16:52:16
R
W
Run
core
DIR
2026-07-10 16:52:16
R
W
Run
customizer
DIR
2026-07-10 16:52:16
R
W
Run
dynamic-css
DIR
2026-07-10 16:52:16
R
W
Run
integrations
DIR
2026-07-10 16:52:16
R
W
Run
lib
DIR
2026-07-10 16:52:16
R
W
Run
metabox
DIR
2026-07-10 16:52:16
R
W
Run
modules
DIR
2026-07-10 16:52:16
R
W
Run
schema
DIR
2026-07-10 16:52:16
R
W
Run
theme-update
DIR
2026-07-10 16:52:16
R
W
Run
admin-functions.php
1.62 KB
2025-02-11 15:39:46
R
W
Run
Delete
Rename
class-astra-after-setup-theme.php
11.32 KB
2025-12-16 13:01:08
R
W
Run
Delete
Rename
class-astra-dynamic-css.php
299.96 KB
2026-07-06 07:35:32
R
W
Run
Delete
Rename
class-astra-extended-base-dynamic-css.php
6.43 KB
2025-02-11 15:39:46
R
W
Run
Delete
Rename
class-astra-global-palette.php
13.41 KB
2025-09-09 13:41:48
R
W
Run
Delete
Rename
class-astra-loop.php
7.2 KB
2025-02-11 15:39:46
R
W
Run
Delete
Rename
class-astra-memory-limit-notice.php
12.44 KB
2026-04-16 15:17:12
R
W
Run
Delete
Rename
class-astra-mobile-header.php
5.78 KB
2025-12-08 14:18:16
R
W
Run
Delete
Rename
extras.php
44.64 KB
2026-02-05 15:31:50
R
W
Run
Delete
Rename
google-fonts.php
200.86 KB
2026-07-06 07:35:32
R
W
Run
Delete
Rename
index.php
111 By
2024-11-11 15:51:54
R
W
Run
Delete
Rename
markup-extras.php
72.38 KB
2026-05-12 13:03:58
R
W
Run
Delete
Rename
template-parts.php
9.52 KB
2025-04-24 09:51:30
R
W
Run
Delete
Rename
template-tags.php
1.11 KB
2025-02-11 15:39:46
R
W
Run
Delete
Rename
w-org-version.php
647 By
2025-07-01 14:56:58
R
W
Run
Delete
Rename
widgets.php
4.32 KB
2025-04-08 10:18:34
R
W
Run
Delete
Rename
error_log
up
📄
template-tags.php
Save
<?php /** * Custom template tags for this theme. * * Eventually, some of the functionality here could be replaced by core features. * * @package Astra */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if ( ! function_exists( 'astra_entry_footer' ) ) { /** * Prints HTML with meta information for the categories, tags and comments. */ function astra_entry_footer() { if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo '<span class="comments-link">'; /** * Get default strings. * * @see astra_default_strings */ comments_popup_link( astra_default_strings( 'string-blog-meta-leave-a-comment', false ), astra_default_strings( 'string-blog-meta-one-comment', false ), astra_default_strings( 'string-blog-meta-multiple-comment', false ) ); echo '</span>'; } astra_edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'astra' ), the_title( '<span class="screen-reader-text">"', '"</span>', false ) ), '<span class="edit-link">', '</span>' ); } }