From 04f7a0da2feefa46c697b99b9d3c3984393b3e4c Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Fri, 18 Sep 2015 19:28:26 +0000 Subject: [PATCH] Add a 'get_sample_permalink' filter. Props SergeyBiryukov, wenthemes, JustinSainton. Fixes #22338. Built from https://develop.svn.wordpress.org/trunk@34309 git-svn-id: http://core.svn.wordpress.org/trunk@34273 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/post.php | 13 ++++++++++++- wp-includes/version.php | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 66f113663f..45d9a00b19 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -1256,7 +1256,18 @@ function get_sample_permalink($id, $title = null, $name = null) { $post->post_name = $original_name; unset($post->filter); - return $permalink; + /** + * Filter the sample permalink. + * + * @since 4.4.0 + * + * @param string $permalink Sample permalink. + * @param int $post_id Post ID. + * @param string $title Post title. + * @param string $name Post name (slug). + * @param WP_Post $post Post object. + */ + return apply_filters( 'get_sample_permalink', $permalink, $post->ID, $title, $name, $post ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 2c445a727c..32eee0293d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34308'; +$wp_version = '4.4-alpha-34309'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.