$82 GRAYBYTE WORDPRESS FILE MANAGER $61

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/var/softaculous/sitepad/editor/site-inc/

HOME
Current File : /var/softaculous/sitepad/editor/site-inc//feed-atom-comments.php
<?php
/**
 * Atom Feed Template for displaying Atom Comments feed.
 *
 * @package WordPress
 */

header( 'Content-Type: ' . feed_content_type( 'atom' ) . '; charset=' . get_option( 'blog_charset' ), true );
echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '" ?' . '>';

/** This action is documented in site-inc/feed-rss2.php */
do_action( 'rss_tag_pre', 'atom-comments' );
?>
<feed
	xmlns="http://www.w3.org/2005/Atom"
	xml:lang="<?php bloginfo_rss( 'language' ); ?>"
	xmlns:thr="http://purl.org/syndication/thread/1.0"
	<?php
		/** This action is documented in site-inc/feed-atom.php */
		do_action( 'atom_ns' );

		/**
		 * Fires inside the feed tag in the Atom comment feed.
		 *
		 * @since 2.8.0
		 */
		do_action( 'atom_comments_ns' );
	?>
>
	<title type="text">
	<?php
	if ( is_singular() ) {
		/* translators: Comments feed title. %s: Post title */
		printf( ent2ncr( __( 'Comments on %s' ) ), get_the_title_rss() );
	} elseif ( is_search() ) {
		/* translators: Comments feed title. 1: Site name, 2: Search query */
		printf( ent2ncr( __( 'Comments for %1$s searching on %2$s' ) ), get_bloginfo_rss( 'name' ), get_search_query() );
	} else {
		/* translators: Comments feed title. %s: Site name */
		printf( ent2ncr( __( 'Comments for %s' ) ), get_wp_title_rss() );
	}
	?>
	</title>
	<subtitle type="text"><?php bloginfo_rss( 'description' ); ?></subtitle>

	<updated>
	<?php
		$date = get_lastcommentmodified( 'GMT' );
		echo $date ? mysql2date( 'Y-m-d\TH:i:s\Z', $date, false ) : date( 'Y-m-d\TH:i:s\Z' );
	?>
	</updated>

<?php if ( is_singular() ) { ?>
	<link rel="alternate" type="<?php bloginfo_rss( 'html_type' ); ?>" href="<?php comments_link_feed(); ?>" />
	<link rel="self" type="application/atom+xml" href="<?php echo esc_url( get_post_comments_feed_link( '', 'atom' ) ); ?>" />
	<id><?php echo esc_url( get_post_comments_feed_link( '', 'atom' ) ); ?></id>
<?php } elseif ( is_search() ) { ?>
	<link rel="alternate" type="<?php bloginfo_rss( 'html_type' ); ?>" href="<?php echo home_url() . '?s=' . get_search_query(); ?>" />
	<link rel="self" type="application/atom+xml" href="<?php echo get_search_comments_feed_link( '', 'atom' ); ?>" />
	<id><?php echo get_search_comments_feed_link( '', 'atom' ); ?></id>
<?php } else { ?>
	<link rel="alternate" type="<?php bloginfo_rss( 'html_type' ); ?>" href="<?php bloginfo_rss( 'url' ); ?>" />
	<link rel="self" type="application/atom+xml" href="<?php bloginfo_rss( 'comments_atom_url' ); ?>" />
	<id><?php bloginfo_rss( 'comments_atom_url' ); ?></id>
<?php } ?>
<?php
	/**
	 * Fires at the end of the Atom comment feed header.
	 *
	 * @since 2.8.0
	 */
	do_action( 'comments_atom_head' );
?>
<?php
if ( have_comments() ) :
	while ( have_comments() ) :
		the_comment();
		$comment_post = $GLOBALS['post'] = get_post( $comment->comment_post_ID );
		?>
	<entry>
		<title>
		<?php
		if ( ! is_singular() ) {
			$title = get_the_title( $comment_post->ID );
			/** This filter is documented in site-inc/feed.php */
			$title = apply_filters( 'the_title_rss', $title );
			/* translators: Individual comment title. 1: Post title, 2: Comment author name */
			printf( ent2ncr( __( 'Comment on %1$s by %2$s' ) ), $title, get_comment_author_rss() );
		} else {
			/* translators: Comment author title. %s: Comment author name */
			printf( ent2ncr( __( 'By: %s' ) ), get_comment_author_rss() );
		}
		?>
			</title>
			<link rel="alternate" href="<?php comment_link(); ?>" type="<?php bloginfo_rss( 'html_type' ); ?>" />

		<author>
			<name><?php comment_author_rss(); ?></name>
			<?php
			if ( get_comment_author_url() ) {
				echo '<uri>' . get_comment_author_url() . '</uri>';}
			?>

		</author>

		<id><?php comment_guid(); ?></id>
		<updated><?php echo mysql2date( 'Y-m-d\TH:i:s\Z', get_comment_time( 'Y-m-d H:i:s', true, false ), false ); ?></updated>
		<published><?php echo mysql2date( 'Y-m-d\TH:i:s\Z', get_comment_time( 'Y-m-d H:i:s', true, false ), false ); ?></published>
		<?php if ( post_password_required( $comment_post ) ) : ?>
		<content type="html" xml:base="<?php comment_link(); ?>"><![CDATA[<?php echo get_the_password_form(); ?>]]></content>
	<?php else : // post pass ?>
		<content type="html" xml:base="<?php comment_link(); ?>"><![CDATA[<?php comment_text(); ?>]]></content>
		<?php
	endif; // post pass
	// Return comment threading information (https://www.ietf.org/rfc/rfc4685.txt)
	if ( $comment->comment_parent == 0 ) : // This comment is top level
		?>
	<thr:in-reply-to ref="<?php the_guid(); ?>" href="<?php the_permalink_rss(); ?>" type="<?php bloginfo_rss( 'html_type' ); ?>" />
		<?php
	else : // This comment is in reply to another comment
		$parent_comment = get_comment( $comment->comment_parent );
		// The rel attribute below and the id tag above should be GUIDs, but WP doesn't create them for comments (unlike posts). Either way, it's more important that they both use the same system
		?>
		<thr:in-reply-to ref="<?php comment_guid( $parent_comment ); ?>" href="<?php echo get_comment_link( $parent_comment ); ?>" type="<?php bloginfo_rss( 'html_type' ); ?>" />
		<?php
endif;
	/**
	 * Fires at the end of each Atom comment feed item.
	 *
	 * @since 2.2.0
	 *
	 * @param int $comment_id      ID of the current comment.
	 * @param int $comment_post_id ID of the post the current comment is connected to.
	 */
	do_action( 'comment_atom_entry', $comment->comment_ID, $comment_post->ID );
	?>
	</entry>
		<?php
	endwhile;
endif;
?>
</feed>


Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
21 Feb 2026 2.55 AM
root / root
0755
ID3
--
21 Feb 2026 2.55 AM
root / root
0755
IXR
--
21 Feb 2026 2.55 AM
root / root
0755
PHPMailer
--
21 Feb 2026 2.55 AM
root / root
0755
Requests
--
21 Feb 2026 2.55 AM
root / root
0755
SimplePie
--
21 Feb 2026 2.55 AM
root / root
0755
Text
--
21 Feb 2026 2.55 AM
root / root
0755
certificates
--
21 Feb 2026 2.55 AM
root / root
0755
css
--
21 Feb 2026 2.55 AM
root / root
0755
customize
--
21 Feb 2026 2.55 AM
root / root
0755
images
--
21 Feb 2026 2.55 AM
root / root
0755
js
--
21 Feb 2026 2.55 AM
root / root
0755
pomo
--
21 Feb 2026 2.55 AM
root / root
0755
random_compat
--
21 Feb 2026 2.55 AM
root / root
0755
rest-api
--
21 Feb 2026 2.55 AM
root / root
0755
theme-compat
--
21 Feb 2026 2.55 AM
root / root
0755
widgets
--
21 Feb 2026 2.55 AM
root / root
0755
admin-bar.php
29.025 KB
18 Feb 2026 11.32 PM
root / root
0644
atomlib.php
11.562 KB
18 Feb 2026 11.32 PM
root / root
0644
author-template.php
16.218 KB
18 Feb 2026 11.32 PM
root / root
0644
blocks.php
12.426 KB
18 Feb 2026 11.32 PM
root / root
0644
bookmark-template.php
11.639 KB
18 Feb 2026 11.32 PM
root / root
0644
bookmark.php
13.551 KB
18 Feb 2026 11.32 PM
root / root
0644
bootstrap.php
4.11 KB
18 Feb 2026 11.32 PM
root / root
0644
cache.php
21.354 KB
18 Feb 2026 11.32 PM
root / root
0644
canonical.php
27.827 KB
18 Feb 2026 11.32 PM
root / root
0644
capabilities.php
28.84 KB
18 Feb 2026 11.32 PM
root / root
0644
category-template.php
50.8 KB
18 Feb 2026 11.32 PM
root / root
0644
category.php
12.414 KB
18 Feb 2026 11.32 PM
root / root
0644
class-IXR.php
2.513 KB
18 Feb 2026 11.32 PM
root / root
0644
class-feed.php
0.511 KB
18 Feb 2026 11.32 PM
root / root
0644
class-http.php
36.222 KB
18 Feb 2026 11.32 PM
root / root
0644
class-json.php
39.526 KB
18 Feb 2026 11.32 PM
root / root
0644
class-oembed.php
30.733 KB
18 Feb 2026 11.32 PM
root / root
0644
class-phpass.php
7.146 KB
18 Feb 2026 11.32 PM
root / root
0644
class-phpmailer.php
0.652 KB
18 Feb 2026 11.32 PM
root / root
0644
class-pop3.php
20.429 KB
18 Feb 2026 11.32 PM
root / root
0644
class-requests.php
29.092 KB
18 Feb 2026 11.32 PM
root / root
0644
class-simplepie.php
87.172 KB
18 Feb 2026 11.32 PM
root / root
0644
class-smtp.php
0.45 KB
18 Feb 2026 11.32 PM
root / root
0644
class-walker-category-dropdown.php
2.074 KB
18 Feb 2026 11.32 PM
root / root
0644
class-walker-category.php
6.62 KB
18 Feb 2026 11.32 PM
root / root
0644
class-walker-comment.php
13.334 KB
18 Feb 2026 11.32 PM
root / root
0644
class-walker-nav-menu.php
8.376 KB
18 Feb 2026 11.32 PM
root / root
0644
class-walker-page-dropdown.php
2.244 KB
18 Feb 2026 11.32 PM
root / root
0644
class-walker-page.php
6.784 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-admin-bar.php
16.078 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-ajax-response.php
5.007 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-block-parser.php
14.861 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-block-type-registry.php
4.633 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-block-type.php
4.702 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-comment-query.php
42.21 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-comment.php
8.751 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-customize-control.php
24.489 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-customize-manager.php
195.47 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-customize-nav-menus.php
53.08 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-customize-panel.php
9.421 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-customize-section.php
9.989 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-customize-setting.php
27.587 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-dependency.php
2.28 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-editor.php
66.267 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-embed.php
14.384 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-error.php
4.808 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-feed-cache-transient.php
2.5 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-feed-cache.php
0.731 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-hook.php
13.774 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-http-cookie.php
6.437 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-http-curl.php
11.643 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-http-encoding.php
6.351 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-http-ixr-client.php
3.248 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-http-proxy.php
5.919 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-http-requests-hooks.php
1.829 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-http-requests-response.php
4.192 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-http-response.php
2.804 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-http-streams.php
15.021 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-image-editor-gd.php
13.178 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-image-editor-imagick.php
21.267 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-image-editor.php
11.485 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-list-util.php
6.246 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-locale-switcher.php
4.908 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-locale.php
14.258 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-matchesmapregex.php
1.762 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-meta-query.php
22.858 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-metadata-lazyloader.php
5.258 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-network-query.php
16.79 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-network.php
11.931 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-oembed-controller.php
5.88 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-post-type.php
17.809 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-post.php
6.28 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-query.php
127.667 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-rewrite.php
58.419 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-role.php
2.599 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-roles.php
8.133 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-session-tokens.php
7.247 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-simplepie-file.php
2.271 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-simplepie-sanitize-kses.php
1.733 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-site-query.php
26.784 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-site.php
7.133 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-tax-query.php
18.811 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-taxonomy.php
10.411 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-term-query.php
33.844 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-term.php
5.142 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-text-diff-renderer-inline.php
0.699 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-text-diff-renderer-table.php
16.057 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-theme.php
48.088 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-user-meta-session-tokens.php
2.92 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-user-query.php
30.492 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-user.php
20.912 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-walker.php
12.39 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-widget-factory.php
3.689 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-widget.php
17.413 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp-xmlrpc-server.php
202.08 KB
18 Feb 2026 11.32 PM
root / root
0644
class-wp.php
24.178 KB
18 Feb 2026 11.32 PM
root / root
0644
class.wp-dependencies.php
11.242 KB
18 Feb 2026 11.32 PM
root / root
0644
class.wp-scripts.php
17.403 KB
18 Feb 2026 11.32 PM
root / root
0644
class.wp-styles.php
9.608 KB
18 Feb 2026 11.32 PM
root / root
0644
comment-template.php
87.637 KB
18 Feb 2026 11.32 PM
root / root
0644
comment.php
111.723 KB
18 Feb 2026 11.32 PM
root / root
0644
compat.php
15.987 KB
18 Feb 2026 11.32 PM
root / root
0644
cron.php
30.823 KB
18 Feb 2026 11.32 PM
root / root
0644
date.php
34.337 KB
18 Feb 2026 11.32 PM
root / root
0644
default-constants.php
9.606 KB
18 Feb 2026 11.32 PM
root / root
0644
default-filters.php
24.763 KB
18 Feb 2026 11.32 PM
root / root
0644
default-widgets.php
2.129 KB
18 Feb 2026 11.32 PM
root / root
0644
embed.php
44.035 KB
18 Feb 2026 11.32 PM
root / root
0644
feed-atom-comments.php
5.332 KB
18 Feb 2026 11.32 PM
root / root
0644
feed-atom.php
3.092 KB
18 Feb 2026 11.32 PM
root / root
0644
feed-rdf.php
2.667 KB
18 Feb 2026 11.32 PM
root / root
0644
feed-rss.php
1.247 KB
18 Feb 2026 11.32 PM
root / root
0644
feed-rss2-comments.php
4.087 KB
18 Feb 2026 11.32 PM
root / root
0644
feed-rss2.php
3.767 KB
18 Feb 2026 11.32 PM
root / root
0644
feed.php
19.29 KB
18 Feb 2026 11.32 PM
root / root
0644
formatting.php
280.291 KB
18 Feb 2026 11.32 PM
root / root
0644
functions.php
210.219 KB
18 Feb 2026 11.32 PM
root / root
0644
functions.wp-scripts.php
12.526 KB
18 Feb 2026 11.32 PM
root / root
0644
functions.wp-styles.php
8.026 KB
18 Feb 2026 11.32 PM
root / root
0644
general-template.php
138.455 KB
18 Feb 2026 11.32 PM
root / root
0644
http.php
21.898 KB
18 Feb 2026 11.32 PM
root / root
0644
kses.php
57.229 KB
18 Feb 2026 11.32 PM
root / root
0644
l10n.php
50.672 KB
18 Feb 2026 11.32 PM
root / root
0644
link-template.php
135.399 KB
18 Feb 2026 11.32 PM
root / root
0644
load.php
36.404 KB
18 Feb 2026 11.32 PM
root / root
0644
media-template.php
46.327 KB
18 Feb 2026 11.32 PM
root / root
0644
media.php
141.334 KB
18 Feb 2026 11.32 PM
root / root
0644
meta.php
44.976 KB
18 Feb 2026 11.32 PM
root / root
0644
mime.php
39.537 KB
18 Feb 2026 11.32 PM
root / root
0644
nav-menu-template.php
21.197 KB
18 Feb 2026 11.32 PM
root / root
0644
nav-menu.php
39.573 KB
18 Feb 2026 11.32 PM
root / root
0644
open_basedir.php
0.021 KB
18 Feb 2026 11.32 PM
root / root
0644
option.php
67.907 KB
18 Feb 2026 11.32 PM
root / root
0644
pluggable.php
97.517 KB
18 Feb 2026 11.32 PM
root / root
0644
plugin.php
31.372 KB
18 Feb 2026 11.32 PM
root / root
0644
post-formats.php
6.859 KB
18 Feb 2026 11.32 PM
root / root
0644
post-template.php
60.224 KB
18 Feb 2026 11.32 PM
root / root
0644
post-thumbnail-template.php
8.747 KB
18 Feb 2026 11.32 PM
root / root
0644
post.php
227.373 KB
18 Feb 2026 11.32 PM
root / root
0644
query.php
31.236 KB
18 Feb 2026 11.32 PM
root / root
0644
rest-api.php
40.67 KB
18 Feb 2026 11.32 PM
root / root
0644
revision.php
21.08 KB
18 Feb 2026 11.32 PM
root / root
0644
rewrite.php
17.271 KB
18 Feb 2026 11.32 PM
root / root
0644
robots-template.php
5.063 KB
18 Feb 2026 11.32 PM
root / root
0644
rss.php
22.664 KB
18 Feb 2026 11.32 PM
root / root
0644
script-loader.php
98.753 KB
18 Feb 2026 11.32 PM
root / root
0644
shortcodes.php
20.254 KB
18 Feb 2026 11.32 PM
root / root
0644
sitepad_functions.php
19.729 KB
18 Feb 2026 11.32 PM
root / root
0644
sitepad_functions2.php
21.989 KB
18 Feb 2026 11.32 PM
root / root
0644
spl-autoload-compat.php
2.514 KB
18 Feb 2026 11.32 PM
root / root
0644
taxonomy.php
152.95 KB
18 Feb 2026 11.32 PM
root / root
0644
template-loader.php
2.555 KB
18 Feb 2026 11.32 PM
root / root
0644
template.php
19.771 KB
18 Feb 2026 11.32 PM
root / root
0644
theme.php
99.092 KB
18 Feb 2026 11.32 PM
root / root
0644
update.php
24.806 KB
18 Feb 2026 11.32 PM
root / root
0644
user.php
120.689 KB
18 Feb 2026 11.32 PM
root / root
0644
vars.php
5.588 KB
18 Feb 2026 11.32 PM
root / root
0644
version.php
2.032 KB
18 Feb 2026 11.32 PM
root / root
0644
widgets.php
55.816 KB
18 Feb 2026 11.32 PM
root / root
0644
wlwmanifest.xml
1.026 KB
18 Feb 2026 11.32 PM
root / root
0644
wp-db.php
99.288 KB
18 Feb 2026 11.32 PM
root / root
0644
wp-diff.php
0.646 KB
18 Feb 2026 11.32 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF