Add filter to the args in wp_link_pages(). fixes #12158 props greenshady
git-svn-id: http://svn.automattic.com/wordpress/trunk@13479 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2610af8b7b
commit
2e2c626d97
|
@ -570,6 +570,7 @@ function wp_link_pages($args = '') {
|
|||
);
|
||||
|
||||
$r = wp_parse_args( $args, $defaults );
|
||||
$r = apply_filters( 'wp_link_pages_args', $r );
|
||||
extract( $r, EXTR_SKIP );
|
||||
|
||||
global $post, $page, $numpages, $multipage, $more, $pagenow;
|
||||
|
|
Loading…
Reference in New Issue