geoip_detect2_get_info_from_current_ip()
example.com/catalog/clothing?gender=man&brand=mammut&color=white
add_query_arg()
$url = 'https://site.ru/';
$url = add_query_arg( array( 'gender' => 'man', 'brand' => 'mammut', 'color' => 'white' ), $url );
add_rewrite_rule()
add_query_arg()
и подключать нужный шаблон при проверке get_query_var()
$url = 'https://site.ru/';
$url = add_query_arg( array( 'page_id' => '5302' ), $url ); // https://site.ru/?page_id=5302
if ( $page_id = get_query_var( 'page_id' ) ) {
get_template_part( 'templates/page', 'simple', array( 'page_id' => $page_id ) );
} else {
}
При подключений PHP файлов сайт не работает
сами php файлы у меня в директории сайта находятся
require_once ( ABSPATH . 'wp-admin/includes/plugin.php' );
require_once get_stylesheet_directory() . '/includes/setup.php';
wp_get_nav_menu_items()
// Получаем элементы меню по ID.
$nav_menu_items = wp_get_nav_menu_items( $menu_id );
// Получаем элементы меню по location.
$menu_location = 'primary';
$locations = get_nav_menu_locations();
if ( isset( $locations[ $menu_location ] ) ) {
$nav_menu_items = wp_get_nav_menu_items( $locations[ $menu_location ] );
}
$crb_options = array(
'post_meta' => __( 'Article Properties', 'textdomain' ),
'term_meta' => __( 'Category Properties', 'textdomain' ),
);
foreach ( $crb_options as $key => $crb_option ) {
Container::make( $key, $crb_option )
->add_tab( 'SEO', array(
Field::make( 'text', 'crb_seo_title', __( 'Title', 'textdomain' ) ),
Field::make( 'textarea', 'crb_seo_description', __( 'Description', 'textdomain' ) ),
Field::make( 'text', 'crb_seo_keywords', __( 'Keywords', 'textdomain' ) ),
Field::make( 'radio', 'crb_seo_robots', __( 'Robots Visibility', 'textdomain' ) )
->add_options( array(
'index, follow' => 'index, follow',
'noindex, nofollow' => 'noindex, nofollow',
) )
) );
}
load_theme_textdomain()
wp_robots
geoip_detect2_get_info_from_current_ip()
, разобрать полученный результат и сделать редирект на подходящую языковую версию register_post_type()
, а сами переводы лежат в .po и .mo файлах wp_add_inline_script()
, которая добавляет JS прямо в html документ, после указанного скрипта. Например, инициализация masonry может выглядеть так:wp_enqueue_script( 'masonry' );
$masonry_init = 'jQuery(function($) {
var $container = $(".masonry-gallery");
$container.imagesLoaded( function() {
$container.masonry({
columnWidth: ".masonry-item",
itemSelector: ".masonry-item"
});
});
});';
wp_add_inline_script( 'masonry', $masonry_init );
save_post
мы можно добавлять свежие термины записи в начало массива с помощью array_unshift()
add_action( 'save_post', 'update_fresh_terms' );
if ( ! function_exists( 'update_fresh_terms' ) ) {
function update_fresh_terms( $post_id ) {
if ( $_POST['post_type'] === 'post' ) {
$fresh_terms = get_option( '_fresh_category', array() );
// Получаем термины текущего поста.
$terms = get_the_terms( $post_id, 'category' );
if ( is_array( $terms ) ) {
foreach ( $terms as $key => $term ) {
array_unshift( $fresh_terms, $term->term_id ); // Добавляем id новых терминов в начало массива.
}
}
$fresh_terms = array_unique( $fresh_terms );
update_option( '_fresh_category', $fresh_terms );
}
}
}
get_option()
. Или же можно создать дополнительную функцию, которая при первом использовании, когда массив с терминами еще пустой, будет делать запрос всех постов из базы и собирать массив терминов по «свежести»if ( ! function_exists( 'get_fresh_terms' ) ) {
function get_fresh_terms( $count = 5, $post_type = 'post', $term_name = 'category' ) {
$fresh_terms = get_option( '_fresh_' . $term_name, array() );
if ( empty( $fresh_terms ) ) {
// Задаем нужные нам критерии выборки данных из БД.
$args = array(
'posts_per_page' => -1,
'post_type' => $post_type,
);
$posts = get_posts( $args );
foreach ( $posts as $key => $post ) {
// Получаем термины текущего поста.
$terms = get_the_terms( $post->ID, $term_name );
if ( is_array( $terms ) ) {
foreach ( $terms as $key => $term ) {
$fresh_terms[] = $term->term_id;
}
}
}
$fresh_terms = array_unique( $fresh_terms );
}
// Если запрос не дал ни одной категории, возвращаем false.
if ( empty( $fresh_terms ) ) {
return false;
} else {
update_option( '_fresh_' . $term_name, $fresh_terms );
}
return $fresh_terms;
}
}
// Задаем нужные нам критерии выборки данных из БД.
$args = array(
'posts_per_page' => -1,
'post_type' => 'page',
);
$pages = get_posts( $args );
$outer = array();
$parents = array();
// Собираем списки страниц в отдельный массив.
foreach ( $pages as $key => $page ) {
$outer[ $page->post_parent ][ $page->ID ]['title'] = $page->post_title;
$outer[ $page->post_parent ][ $page->ID ]['link'] = get_permalink( $page->ID );
$parents[] = $page->post_parent;
}
echo '<div class="row">';
// Основной цикл.
foreach ( $outer as $key => $inner ) {
echo '<div class="article-column col-12 col-sm-6 col-lg-4 col-xl-3">';
// Верхний заголовок без ссылки.
if ( $key === 0 ) {
echo '<h3>Остальные страницы</h3>';
} else {
echo '<h3>' . $outer[0][ $key ]['title'] . '</h3>';
}
echo '<ul class="article-list">';
foreach ( $inner as $key => $value ) {
if ( ! in_array( $key, $parents, true ) ) {
echo '<li class="article-list--item">';
echo '<a class="article-list--link" href="' . $value['link'] . '">' . $value['title'] . '</a>';
echo '</li>';
}
}
echo '</ul>';
echo '</div>';
}
echo '</div>';