Make WordPress Core

Changeset 6211


Ignore:
Timestamp:
10/09/2007 09:09:49 PM (17 years ago)
Author:
ryan
Message:

wlw manifest from josephscott. fixes #5023 for 2.3

Location:
branches/2.3/wp-includes
Files:
2 edited
5 copied

Legend:

Unmodified
Added
Removed
  • branches/2.3/wp-includes/default-filters.php

    r6183 r6211  
    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);
  • branches/2.3/wp-includes/general-template.php

    r6148 r6211  
    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
  • branches/2.3/wp-includes/wlwmanifest.xml

    r6192 r6211  
    1010  <weblog>
    1111    <serviceName>WordPress</serviceName>
    12     <imageUrl>images/wlw/WpIcon.png</imageUrl>
    13     <watermarkImageUrl>images/wlw/WpWatermark.png</watermarkImageUrl>
     12    <imageUrl>images/wlw/wp-icon.png</imageUrl>
     13    <watermarkImageUrl>images/wlw/wp-watermark.png</watermarkImageUrl>
    1414    <homepageLinkText>View site</homepageLinkText>
    1515    <adminLinkText>Dashboard</adminLinkText>
     
    3030      <id>0</id>
    3131      <text>Manage Comments</text>
    32       <imageUrl>images/wlw/WpComments.png</imageUrl>
     32      <imageUrl>images/wlw/wp-comments.png</imageUrl>
    3333      <clickUrl>
    3434        <![CDATA[
Note: See TracChangeset for help on using the changeset viewer.