wp/wp-links-opml.php
changeset 19 3d72ae0968f4
parent 16 a86126ab1dd4
child 21 48c4eec2b7e6
equal deleted inserted replaced
18:be944660c56a 19:3d72ae0968f4
    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 " />