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:
Benim yapmak istediğim url:
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 );functionamp_page_template($template) {if( get_query_var( AMP_QUERY_VAR, false ) !== false ) {if( is_single() ) {$template= get_template_directory() . '/amp-single.php';}}return$template;}


