예제 #1
0
파일: amp.php 프로젝트: vilav/amp-wp
function amp_template_redirect()
{
    $post_id = get_queried_object_id();
    if (true === apply_filters('amp_skip_post', false, $post_id)) {
        return;
    }
    amp_render($post_id);
    exit;
}
예제 #2
0
파일: amp.php 프로젝트: hpandit/amp-wp
function amp_template_redirect()
{
    amp_render(get_queried_object_id());
    exit;
}