PV
Size: a a a
PV
TD
IK

IK
АК
АК

/** Добавялем ID для ACF поля типа post_object (объект записи) */
add_filter( 'acf/fields/post_object/result', 'my_acf_fields_post_object_result', 10, 4 );
function my_acf_fields_post_object_result( $text, $post, $field, $post_id ) {
$text = '[' . $post->ID . '] ' . $post->post_title;
return $text;
}
IK
/** Добавялем ID для ACF поля типа post_object (объект записи) */
add_filter( 'acf/fields/post_object/result', 'my_acf_fields_post_object_result', 10, 4 );
function my_acf_fields_post_object_result( $text, $post, $field, $post_id ) {
$text = '[' . $post->ID . '] ' . $post->post_title;
return $text;
}
АК
http://site.local/clinics/?cities=330заменить на url вида
http://site.local/minsk/clinics/, где 330 - id города (custom post type)
AD
http://site.local/clinics/?cities=330заменить на url вида
http://site.local/minsk/clinics/, где 330 - id города (custom post type)
AD
TD
http://site.local/clinics/?cities=330заменить на url вида
http://site.local/minsk/clinics/, где 330 - id города (custom post type)
АК

add_action('init', 'do_rewrite');
function do_rewrite(){
add_rewrite_endpoint('minsk', EP_PERMALINK | EP_PAGES);
}AD

add_action('init', 'do_rewrite');
function do_rewrite(){
add_rewrite_endpoint('minsk', EP_PERMALINK | EP_PAGES);
}АК
AD
AD
АК

AD
AD