Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Ticket Graph
Context Navigation
Back to Ticket #16843
Ticket #16843
: test-16843.php
File test-16843.php,
262 bytes
(added by scribu,
2 years ago
)
Line
1
<?php
2
3
add_action
(
'init'
,
function
()
{
4
register_post_type
(
'foo'
,
array
(
5
'has_archive'
=>
true
,
6
'public'
=>
true
,
7
'label'
=>
'Foo'
,
8
)
);
9
10
global
$wp_rewrite
;
11
12
var_dump
(
wp_unique_post_slug
(
$wp_rewrite
->
pagination_base
,
1
,
'publish'
,
'foo'
,
0
)
);
13
});
Download in other formats:
Original Format