Ticket #5527: filelevel.phpdoc.r6492.patch
File filelevel.phpdoc.r6492.patch, 3.1 KB (added by , 17 years ago) |
---|
-
default-filters.php
1 1 <?php 2 /** 3 * Sets up the default filters and actions for most 4 * of the WordPress hooks. 5 * 6 * If you need to remove a default hook, this file will 7 * give you the priority for which to use to remove the 8 * hook. 9 * 10 * Not all of the default hooks are found in default-filters.php 11 * 12 * @package WordPress 13 */ 2 14 3 15 // Strip, trim, kses, special chars for string saves 4 16 $filters = array('pre_term_name', 'pre_comment_author_name', 'pre_link_name', 'pre_link_target', -
feed-atom-comments.php
1 1 <?php 2 /** 3 * Atom Feed Template for displaying Atom Comments feed. 4 * 5 * @package WordPress 6 */ 7 2 8 header('Content-Type: application/atom+xml; charset=' . get_option('blog_charset'), true); 3 9 echo '<?xml version="1.0" encoding="' . get_option('blog_charset') . '" ?' . '>'; 4 10 ?> -
feed-atom.php
1 1 <?php 2 /** 3 * Atom Feed Template for displaying Atom Posts feed. 4 * 5 * @package WordPress 6 */ 7 2 8 header('Content-Type: application/atom+xml; charset=' . get_option('blog_charset'), true); 3 9 $more = 1; 4 10 -
feed-rdf.php
1 1 <?php 2 /** 3 * RSS 1 RDF Feed Template for displaying RSS 1 Posts feed. 4 * 5 * @package WordPress 6 */ 7 2 8 header('Content-Type: application/rdf+xml; charset=' . get_option('blog_charset'), true); 3 9 $more = 1; 4 10 -
feed-rss.php
1 1 <?php 2 /** 3 * RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed. 4 * 5 * @package WordPress 6 */ 7 2 8 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true); 3 9 $more = 1; 4 10 -
feed-rss2-comments.php
1 1 <?php 2 /** 3 * RSS2 Feed Template for displaying RSS2 Comments feed. 4 * 5 * @package WordPress 6 */ 7 2 8 header('Content-Type: text/xml;charset=' . get_option('blog_charset'), true); 3 9 4 10 echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; -
feed-rss2.php
1 1 <?php 2 /** 3 * RSS2 Feed Template for displaying RSS2 Posts feed. 4 * 5 * @package WordPress 6 */ 7 2 8 header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true); 3 9 $more = 1; 4 10