Make WordPress Core

Ticket #25229: wp-links-opml.2.diff

File wp-links-opml.2.diff, 1.6 KB (added by netweb, 11 years ago)
  • src/wp-links-opml.php

    diff --git a/src/wp-links-opml.php b/src/wp-links-opml.php
    index e30869b..2118e6a 100644
    a b echo '<?xml version="1.0"?'.">\n"; 
    2828        <head>
    2929                <title><?php printf( __('Links for %s'), esc_attr(get_bloginfo('name', 'display')) ); ?></title>
    3030                <dateCreated><?php echo gmdate("D, d M Y H:i:s"); ?> GMT</dateCreated>
    31                 <?php do_action('opml_head'); ?>
     31
     32                <?php
     33                /**
     34                 * Fires in the OPML header.
     35                 *
     36                 * @since 2.5.1
     37                 */
     38                do_action('opml_head');
     39                ?>
    3240        </head>
    3341        <body>
    3442<?php
    else 
    3846        $cats = get_categories(array('taxonomy' => 'link_category', 'hierarchical' => 0, 'include' => $link_cat));
    3947
    4048foreach ( (array)$cats as $cat ) :
     49
     50        /**
     51         * Filter the OPML outline link category name.
     52         *
     53         * @since 2.0.7
     54         *
     55         * @param string $catname The OPML outline category name.
     56         */
    4157        $catname = apply_filters('link_category', $cat->name);
    4258
    4359?>
    foreach ( (array)$cats as $cat ) : 
    4561<?php
    4662        $bookmarks = get_bookmarks(array("category" => $cat->term_id));
    4763        foreach ( (array)$bookmarks as $bookmark ) :
     64
     65                /**
     66                 * Filter the OPML outline link title text.
     67                 *
     68                 * @since 2.0.7
     69                 *
     70                 * @param string $title The OPML outline title text.
     71                 */
    4872                $title = apply_filters('link_title', $bookmark->link_name);
    4973?>
    5074        <outline text="<?php echo esc_attr($title); ?>" type="link" xmlUrl="<?php echo esc_attr($bookmark->link_rss); ?>" htmlUrl="<?php echo esc_attr($bookmark->link_url); ?>" updated="<?php if ('0000-00-00 00:00:00' != $bookmark->link_updated) echo $bookmark->link_updated; ?>" />