Changeset 34309
- Timestamp:
- 09/18/2015 07:27:24 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/post.php
r34263 r34309 1257 1257 unset($post->filter); 1258 1258 1259 return $permalink; 1259 /** 1260 * Filter the sample permalink. 1261 * 1262 * @since 4.4.0 1263 * 1264 * @param string $permalink Sample permalink. 1265 * @param int $post_id Post ID. 1266 * @param string $title Post title. 1267 * @param string $name Post name (slug). 1268 * @param WP_Post $post Post object. 1269 */ 1270 return apply_filters( 'get_sample_permalink', $permalink, $post->ID, $title, $name, $post ); 1260 1271 } 1261 1272
Note: See TracChangeset
for help on using the changeset viewer.