Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
function admin_default_page() { return '/welcome_back'; } add_filter('login_redirect', 'admin_default_page');
function remove_redirect_guess_404_permalink( $redirect_url ) { if ( is_404() && !isset($_GET['p']) ) return false; return $redirect_url; } add_filter( 'redirect_canonical', 'remove_redirect_guess_404_permalink' );
window.location.href = 'New url here'
woocommerce_show_product_images
single-product/product-image.php
add_action( 'wp_enqueue_scripts', 'parent_theme_enqueue_styles' ); /** * Enqueue scripts and styles. */ function parent_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); }
the_excerpt_rss
add_filter('display_post_states', 'custom_post_state', 10, 2); function custom_post_state( $states, $post ) { $states[] = __('Custom state'); return $states; }