golden hour
/home/godaofbq/globalhealingzen.com
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
236 B
Del
OK
.well-known
-
Del
OK
.well-known23c14a
-
Del
OK
7972e1
-
Del
OK
98c186404387c3
-
Del
OK
bbb.php926605
71.6 KB
Del
OK
boss2026yt
-
Del
OK
br2026yt
-
Del
OK
bz1opak
-
Del
OK
ccc.php7239c4
178.11 KB
Del
OK
click.php
1.87 KB
Del
OK
ed86d
-
Del
OK
egvarwo
-
Del
OK
error_log6672c3
1.99 MB
Del
OK
fenouy1
-
Del
OK
filefuns.php
5.28 KB
Del
OK
goods.php
1.44 KB
Del
OK
google21183ed585aab2b6.html
53 B
Del
OK
index.php
703 B
Del
OK
index.php0
4 B
Del
OK
license.txt2c12b4
19.44 KB
Del
OK
mah.php
1.93 KB
Del
OK
networks.php
1.93 KB
Del
OK
ntlcejo
-
Del
OK
pages.php
733 B
Del
OK
readme.html356c80
7.25 KB
Del
OK
robots.txt
411 B
Del
OK
wp-activate.phpf3a672
7.18 KB
Del
OK
wp-admin1b663b
-
Del
OK
wp-blog-header.php
2.74 KB
Del
OK
wp-blog-header.php78985e
351 B
Del
OK
wp-comments-post.php3e91ed
2.27 KB
Del
OK
wp-config-sample.php79702b
3.26 KB
Del
OK
wp-config.php3d82bc
3.26 KB
Del
OK
wp-contenta9dc6a
-
Del
OK
wp-cron.php
2.74 KB
Del
OK
wp-cron.php500dad
5.49 KB
Del
OK
wp-includes
-
Del
OK
wp-includes55c4b0
-
Del
OK
wp-links-opml.php3f98f8
2.43 KB
Del
OK
wp-load.php53264f
3.84 KB
Del
OK
wp-login.phpe375c2
50.23 KB
Del
OK
wp-mail.php129f8e
8.52 KB
Del
OK
wp-settings.phpca347e
30.33 KB
Del
OK
wp-signup.php8d3c99
33.71 KB
Del
OK
wp-trackback.php99948b
5.09 KB
Del
OK
xmlrpc.phpf4fb5a
3.13 KB
Del
OK
Edit: wp-links-opml.php3f98f8
<?php /** * Outputs the OPML XML format for getting the links defined in the link * administration. This can be used to export links from one blog over to * another. Links aren't exported by the WordPress export, so this file handles * that. * * This file is not added by default to WordPress theme pages when outputting * feed links. It will have to be added manually for browsers and users to pick * up that this file exists. * * @package WordPress */ require_once __DIR__ . '/wp-load.php'; header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true ); $link_cat = ''; if ( ! empty( $_GET['link_cat'] ) ) { $link_cat = $_GET['link_cat']; if ( ! in_array( $link_cat, array( 'all', '0' ), true ) ) { $link_cat = absint( urldecode( $link_cat ) ); } } echo '<?xml version="1.0"?' . ">\n"; ?> <opml version="1.0"> <head> <title> <?php /* translators: %s: Site title. */ printf( __( 'Links for %s' ), esc_attr( get_bloginfo( 'name', 'display' ) ) ); ?> </title> <dateCreated><?php echo gmdate( 'D, d M Y H:i:s' ); ?> GMT</dateCreated> <?php /** * Fires in the OPML header. * * @since 3.0.0 */ do_action( 'opml_head' ); ?> </head> <body> <?php if ( empty( $link_cat ) ) { $cats = get_categories( array( 'taxonomy' => 'link_category', 'hierarchical' => 0, ) ); } else { $cats = get_categories( array( 'taxonomy' => 'link_category', 'hierarchical' => 0, 'include' => $link_cat, ) ); } foreach ( (array) $cats as $cat ) : /** This filter is documented in wp-includes/bookmark-template.php */ $catname = apply_filters( 'link_category', $cat->name ); ?> <outline type="category" title="<?php echo esc_attr( $catname ); ?>"> <?php $bookmarks = get_bookmarks( array( 'category' => $cat->term_id ) ); foreach ( (array) $bookmarks as $bookmark ) : /** * Filters the OPML outline link title text. * * @since 2.2.0 * * @param string $title The OPML outline title text. */ $title = apply_filters( 'link_title', $bookmark->link_name ); ?> <outline text="<?php echo esc_attr( $title ); ?>" type="link" xmlUrl="<?php echo esc_url( $bookmark->link_rss ); ?>" htmlUrl="<?php echo esc_url( $bookmark->link_url ); ?>" updated=" <?php if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) { echo $bookmark->link_updated; } ?> " /> <?php endforeach; // $bookmarks ?> </outline> <?php endforeach; // $cats ?> </body> </opml>
Save