Changeset 43827 for branches/5.0/src/wp-includes/post.php
- Timestamp:
- 10/26/2018 01:23:29 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-includes/post.php
r43819 r43827 1000 1000 1001 1001 /** 1002 * Check if a post type is registered. 1002 * Determines whether a post type is registered. 1003 * 1004 * For more information on this and similar theme functions, check out 1005 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1006 * Conditional Tags} article in the Theme Developer Handbook. 1003 1007 * 1004 1008 * @since 3.0.0 … … 2019 2023 2020 2024 /** 2021 * Check ifpost is sticky.2025 * Determines whether a post is sticky. 2022 2026 * 2023 2027 * Sticky posts should remain at the top of The Loop. If the post ID is not 2024 2028 * given, then The Loop ID for the current post will be used. 2025 * 2029 * 2030 * For more information on this and similar theme functions, check out 2031 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 2032 * Conditional Tags} article in the Theme Developer Handbook. 2033 * 2026 2034 * @since 2.7.0 2027 2035 * … … 4991 4999 4992 5000 /** 4993 * Check if the attachment URI is local one and is really an attachment. 4994 * 5001 * Determines whether an attachment URI is local and really an attachment. 5002 * 5003 * For more information on this and similar theme functions, check out 5004 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 5005 * Conditional Tags} article in the Theme Developer Handbook. 5006 * 4995 5007 * @since 2.0.0 4996 5008 * … … 5488 5500 5489 5501 /** 5490 * Checks if the attachment is an image. 5502 * Determines whether an attachment is an image. 5503 * 5504 * For more information on this and similar theme functions, check out 5505 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 5506 * Conditional Tags} article in the Theme Developer Handbook. 5491 5507 * 5492 5508 * @since 2.1.0
Note: See TracChangeset
for help on using the changeset viewer.