Slide 10
Slide 10 text
midominio.com/permalink/json/
add_action( 'template_redirect', 'json_rewrite' );
function json_rewrite() {
if( is_singular() && get_query_var( 'json' ) ) {
$post = get_queried_object();
$out = array(
'title' => $post->post_title,
'content' => $post->post_content
);
header('Content-Type: text/plain');
echo json_encode( $out );
exit();
}
}