Changeset 42710 for trunk/src/wp-includes/post.php
- Timestamp:
- 02/13/2018 04:53:44 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/post.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post.php
r42678 r42710 972 972 973 973 /** 974 * Check if a post type is registered. 974 * Determines whether a post type is registered. 975 * 976 * For more information on this and similar theme functions, check out 977 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 978 * Conditional Tags} article in the Theme Developer Handbook. 975 979 * 976 980 * @since 3.0.0 … … 1982 1986 1983 1987 /** 1984 * Check ifpost is sticky.1988 * Determines whether a post is sticky. 1985 1989 * 1986 1990 * Sticky posts should remain at the top of The Loop. If the post ID is not 1987 1991 * given, then The Loop ID for the current post will be used. 1988 * 1992 * 1993 * For more information on this and similar theme functions, check out 1994 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1995 * Conditional Tags} article in the Theme Developer Handbook. 1996 * 1989 1997 * @since 2.7.0 1990 1998 * … … 5046 5054 5047 5055 /** 5048 * Check if the attachment URI is local one and is really an attachment. 5049 * 5056 * Determines whether an attachment URI is local and really an attachment. 5057 * 5058 * For more information on this and similar theme functions, check out 5059 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 5060 * Conditional Tags} article in the Theme Developer Handbook. 5061 * 5050 5062 * @since 2.0.0 5051 5063 * … … 5521 5533 5522 5534 /** 5523 * Checks if the attachment is an image. 5535 * Determines whether an attachment is an image. 5536 * 5537 * For more information on this and similar theme functions, check out 5538 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 5539 * Conditional Tags} article in the Theme Developer Handbook. 5524 5540 * 5525 5541 * @since 2.1.0
Note: See TracChangeset
for help on using the changeset viewer.