Changeset 6192

Show
Ignore:
Timestamp:
10/05/07 17:29:34 (10 months ago)
Author:
ryan
Message:

WLW manifest from josephscott. fixes #5023 for trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/default-filters.php

    r6182 r6192  
    137137// Actions 
    138138add_action('wp_head', 'rsd_link'); 
     139add_action('wp_head', 'wlwmanifest_link'); 
    139140add_action('wp_head', 'locale_stylesheet'); 
    140141add_action('publish_future_post', 'wp_publish_post', 10, 1); 
  • trunk/wp-includes/general-template.php

    r6180 r6192  
    828828function rsd_link() { 
    829829    echo '  <link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . get_bloginfo('wpurl') . "/xmlrpc.php?rsd\" />\n"; 
     830} 
     831 
     832function wlwmanifest_link() { 
     833    echo ' <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="' 
     834        . get_bloginfo('wpurl') . '/wp-includes/wlwmanifest.xml" /> '; 
    830835} 
    831836