Make WordPress Core

Changeset 30669


Ignore:
Timestamp:
11/30/2014 10:24:49 PM (10 years ago)
Author:
wonderboymusic
Message:

Improve the @param docs for src/includes/rewrite.php.

See #30224.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rewrite.php

    r30656 r30669  
    910910     * @access public
    911911     *
    912      * @return bool|string False on no permalink structure. Date permalink structure.
     912     * @return string|false False on no permalink structure. Date permalink structure.
    913913     */
    914914    public function get_date_permastruct() {
     
    964964     * @access public
    965965     *
    966      * @return bool|string False on failure. Year structure on success.
     966     * @return false|string False on failure. Year structure on success.
    967967     */
    968968    public function get_year_permastruct() {
     
    989989     * @access public
    990990     *
    991      * @return bool|string False on failure. Year/Month structure on success.
     991     * @return false|string False on failure. Year/Month structure on success.
    992992     */
    993993    public function get_month_permastruct() {
     
    10121012     * @access public
    10131013     *
    1014      * @return bool|string False on failure. Year/Month/Day structure on success.
     1014     * @return string|false False on failure. Year/Month/Day structure on success.
    10151015     */
    10161016    public function get_day_permastruct() {
     
    10811081     * @access public
    10821082     *
    1083      * @return string|bool False if not found. Permalink structure string.
     1083     * @return string|false False if not found. Permalink structure string.
    10841084     */
    10851085    public function get_author_permastruct() {
     
    11071107     * @access public
    11081108     *
    1109      * @return string|bool False if not found. Permalink structure string.
     1109     * @return string|false False if not found. Permalink structure string.
    11101110     */
    11111111    public function get_search_permastruct() {
     
    11331133     * @access public
    11341134     *
    1135      * @return string|bool False if not found. Permalink structure string.
     1135     * @return string|false False if not found. Permalink structure string.
    11361136     */
    11371137    public function get_page_permastruct() {
     
    11591159     * @access public
    11601160     *
    1161      * @return string|bool False if not found. Permalink structure string.
     1161     * @return string|false False if not found. Permalink structure string.
    11621162     */
    11631163    public function get_feed_permastruct() {
Note: See TracChangeset for help on using the changeset viewer.