-
-
Save SeRGei93/38197f31a8df68182c0dc85e87acfe13 to your computer and use it in GitHub Desktop.
wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//*замена адрема после переноса | |
UPDATE wp_options SET option_value = REPLACE(option_value, 'http://ilyarrl2.beget.tech', 'http://re-wp.by') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = REPLACE(guid, 'http://ilyarrl2.beget.tech','http://re-wp.by'); | |
UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://ilyarrl2.beget.tech', 'http://re-wp.by'); | |
update_option( 'siteurl', 'http://ilyarrl2.beget.tech' ); | |
update_option( 'home', 'http://ilyarrl2.beget.tech' ); | |
//**замена адрема после переноса | |
//** тип постов | |
add_action('init', 'my_custom_init2'); | |
function my_custom_init2(){ | |
register_post_type('titles', array( | |
'labels' => array( | |
'name' => 'Плитки', // Основное название типа записи | |
'singular_name' => 'Плитки', // отдельное название записи типа Book | |
'add_new' => 'Добавить новый элемент', | |
'add_new_item' => 'Добавить новый элемент', | |
'edit_item' => 'Редактировать элемент', | |
'new_item' => 'Новый элемент', | |
'view_item' => 'Посмотреть элемент', | |
'search_items' => 'Найти элемент', | |
'not_found' => 'Элементов не найдено', | |
'not_found_in_trash' => 'В корзине элементов не найдено', | |
'parent_item_colon' => '', | |
'menu_name' => 'Плитки' | |
), | |
'public' => true, | |
'publicly_queryable' => true, | |
'show_ui' => true, | |
'show_in_menu' => true, | |
'query_var' => true, | |
'rewrite' => true, | |
'capability_type' => 'post', | |
'has_archive' => true, | |
'hierarchical' => false, | |
'menu_position' => 6, | |
'supports' => array('title','editor','author','thumbnail','excerpt','comments') | |
) ); | |
} | |
//** тип постов |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment