Changeset 47060 for trunk/src/wp-includes/class-wp-rewrite.php
- Timestamp:
- 01/11/2020 06:30:58 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-rewrite.php (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-rewrite.php
r47018 r47060 490 490 * @since 1.5.0 491 491 * 492 * @return string|false False on no permalink structure. Date permalink structure.492 * @return string|false Date permalink structure on success, false on failure. 493 493 */ 494 494 public function get_date_permastruct() { … … 547 547 * @since 1.5.0 548 548 * 549 * @return false|string False on failure. Year structure on success.549 * @return string|false Year permalink structure on success, false on failure. 550 550 */ 551 551 public function get_year_permastruct() { … … 571 571 * @since 1.5.0 572 572 * 573 * @return false|string False on failure. Year/Month structure on success.573 * @return string|false Year/Month permalink structure on success, false on failure. 574 574 */ 575 575 public function get_month_permastruct() { … … 593 593 * @since 1.5.0 594 594 * 595 * @return string|false False on failure. Year/Month/Day structure on success.595 * @return string|false Year/Month/Day permalink structure on success, false on failure. 596 596 */ 597 597 public function get_day_permastruct() { … … 609 609 * @since 1.5.0 610 610 * 611 * @return string|false False on failure. Category permalink structure.611 * @return string|false Category permalink structure on success, false on failure. 612 612 */ 613 613 public function get_category_permastruct() { … … 625 625 * @since 2.3.0 626 626 * 627 * @return string|false False on failure. Tag permalink structure.627 * @return string|false Tag permalink structure on success, false on failure. 628 628 */ 629 629 public function get_tag_permastruct() { … … 637 637 * 638 638 * @param string $name Permalink structure name. 639 * @return string|false False if not found. Permalink structure string.639 * @return string|false Permalink structure string on success, false on failure. 640 640 */ 641 641 public function get_extra_permastruct( $name ) { … … 660 660 * @since 1.5.0 661 661 * 662 * @return string|false False if not found. Permalink structure string.662 * @return string|false Author permalink structure on success, false on failure. 663 663 */ 664 664 public function get_author_permastruct() { … … 686 686 * @since 1.5.0 687 687 * 688 * @return string|false False if not found. Permalink structure string.688 * @return string|false Search permalink structure on success, false on failure. 689 689 */ 690 690 public function get_search_permastruct() { … … 712 712 * @since 1.5.0 713 713 * 714 * @return string|false False if not found. Permalink structure string.714 * @return string|false Page permalink structure on success, false on failure. 715 715 */ 716 716 public function get_page_permastruct() { … … 738 738 * @since 1.5.0 739 739 * 740 * @return string|false F alse if not found. Permalink structure string.740 * @return string|false Feed permalink structure on success, false on failure. 741 741 */ 742 742 public function get_feed_permastruct() { … … 764 764 * @since 1.5.0 765 765 * 766 * @return string|false False if not found. Permalink structure string.766 * @return string|false Comment feed permalink structure on success, false on failure. 767 767 */ 768 768 public function get_comment_feed_permastruct() {
Note: See TracChangeset
for help on using the changeset viewer.