[php]
global $wp_rewrite;
echo ‘
Current Rewrite Rules:
‘;
echo ‘
'; print_r($wp_rewrite->rules); echo '
‘;
echo ‘
Registered Post Types:
‘;
echo ‘
'; print_r(get_post_types(['public' => true], 'names')); echo '
‘;
echo ‘
Check New York City Post:
‘;
$ny = get_page_by_path(‘new-york’, OBJECT, ‘icp_city’);
echo ‘
'; print_r($ny); echo '
‘;
[/php]
