From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- srcs/wordpress/wp-links-opml.php | 97 ---------------------------------------- 1 file changed, 97 deletions(-) delete mode 100644 srcs/wordpress/wp-links-opml.php (limited to 'srcs/wordpress/wp-links-opml.php') diff --git a/srcs/wordpress/wp-links-opml.php b/srcs/wordpress/wp-links-opml.php deleted file mode 100644 index 12d35b0..0000000 --- a/srcs/wordpress/wp-links-opml.php +++ /dev/null @@ -1,97 +0,0 @@ -\n"; -?> - - - - <?php - /* translators: %s: Site title. */ - printf( __( 'Links for %s' ), esc_attr( get_bloginfo( 'name', 'display' ) ) ); - ?> - - GMT - - - - '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 ); - - ?> - - $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 ); - ?> - - - - - - -- cgit