Merhaba arkadaşlar
Eklentisiz amp yaptım her şey güzel çalışıyor sadece url'de değişiklik yapmaya çalışıyorum.
Mevcut url şu şekilde:
https://www.site.com/yazı/amp/
Benim yapmak istediğim url:
www.site.com/amp/yazı/
kullandığım kod bu;
define( 'AMP_QUERY_VAR', apply_filters( 'amp_query_var', 'amp' ) );
add_rewrite_endpoint( AMP_QUERY_VAR, EP_PERMALINK );
add_filter( 'template_include', 'amp_page_template', 99 );
function amp_page_template( $template ) {
if( get_query_var( AMP_QUERY_VAR, false ) !== false ) {
if ( is_single() ) {
$template = get_template_directory() . '/amp-single.php';
}
}
return $template;
}