10 lines
305 B
PHP
10 lines
305 B
PHP
<?php
|
|
// Redirect individual post and pages to the REST API endpoint
|
|
if ( is_single() ) {
|
|
header( 'Location: /wp-json/wp/v2/posts/' . get_post()->ID );
|
|
} elseif ( is_page() ) {
|
|
header( 'Location: /wp-json/wp/v2/pages/' . get_queried_object()->ID );
|
|
} else {
|
|
header( 'Location: /wp-json/' );
|
|
}
|