equal
deleted
inserted
replaced
78 * |
78 * |
79 * @param string $title The OPML outline title text. |
79 * @param string $title The OPML outline title text. |
80 */ |
80 */ |
81 $title = apply_filters( 'link_title', $bookmark->link_name ); |
81 $title = apply_filters( 'link_title', $bookmark->link_name ); |
82 ?> |
82 ?> |
83 <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=" |
83 <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=" |
84 <?php |
84 <?php |
85 if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) { |
85 if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) { |
86 echo $bookmark->link_updated;} |
86 echo $bookmark->link_updated;} |
87 ?> |
87 ?> |
88 " /> |
88 " /> |