]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-links-opml.php
WordPress 4.7.1
[autoinstalls/wordpress.git] / wp-links-opml.php
index b196f736da518a16f231e0b1f0c80bee477d3dfe..42e8b24a9c3482f4870a3b35ba4249cfb707d029 100644 (file)
@@ -26,7 +26,10 @@ echo '<?xml version="1.0"?'.">\n";
 ?>
 <opml version="1.0">
        <head>
-               <title><?php printf( __('Links for %s'), esc_attr(get_bloginfo('name', 'display')) ); ?></title>
+               <title><?php
+                       /* translators: 1: Site name */
+                       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
                /**
@@ -46,7 +49,7 @@ else
 
 foreach ( (array)$cats as $cat ) :
        /**
-        * Filter the OPML outline link category name.
+        * Filters the OPML outline link category name.
         *
         * @since 2.2.0
         *
@@ -60,7 +63,7 @@ foreach ( (array)$cats as $cat ) :
        $bookmarks = get_bookmarks(array("category" => $cat->term_id));
        foreach ( (array)$bookmarks as $bookmark ) :
                /**
-                * Filter the OPML outline link title text.
+                * Filters the OPML outline link title text.
                 *
                 * @since 2.2.0
                 *