-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
507 lines (424 loc) · 19.6 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
<?php
/**
* pozhelaju functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package pozhelaju
*/
if ( ! function_exists( 'pozhelaju_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function pozhelaju_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on pozhelaju, use a find and replace
* to change 'pozhelaju' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'pozhelaju', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'menu-1' => esc_html__( 'Primary', 'pozhelaju' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'pozhelaju_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support( 'custom-logo', array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
) );
}
endif;
add_action( 'after_setup_theme', 'pozhelaju_setup' );
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function pozhelaju_content_width() {
// This variable is intended to be overruled from themes.
// Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}.
// phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
$GLOBALS['content_width'] = apply_filters( 'pozhelaju_content_width', 640 );
}
add_action( 'after_setup_theme', 'pozhelaju_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function pozhelaju_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'pozhelaju' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'pozhelaju' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</div></section>',
'before_title' => '<h4 class="widget-title left-widget">',
'after_title' => '</h4><div class="wrap_w">',
) );
register_sidebar( array(
'name' => 'Menu',
'id' => 'sidebar-2',
'description' => esc_html__( 'Add menu.', 'pozhelaju' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'pozhelaju_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function pozhelaju_scripts() {
$ver = '1.03';
wp_enqueue_style( 'pozhelaju-bt', get_stylesheet_directory_uri() . '/css/bootstrap.css', array(), $ver );
wp_enqueue_style( 'mobile-menu', get_stylesheet_directory_uri() . '/js/dist/mmenu.css', array(), $ver );
wp_enqueue_style( 'awesome', get_stylesheet_directory_uri() . '/css/font-awesome.min.css', array(), $ver );
wp_enqueue_style( 'pozhelaju-style', get_stylesheet_uri() );
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'pozhelaju-clipboard', get_stylesheet_directory_uri() . '/js/clipboard.min.js', array(), $ver, true );
wp_enqueue_script( 'pozhelaju-theme_js', get_stylesheet_directory_uri() . '/js/theme.js', array(), $ver, true );
wp_enqueue_script( 'pozhelaju-bt_js', get_stylesheet_directory_uri() . '/js/bootstrap.js', array(), $ver, true );
wp_enqueue_script( 'pozhelaju-navigation', get_template_directory_uri() . '/js/navigation.js', array(), $ver, true );
wp_enqueue_script( 'pozhelaju-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), $ver, true );
wp_enqueue_script( 'mobile_menu_js', get_stylesheet_directory_uri() . '/js/dist/mmenu.js', array(), $ver, true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'pozhelaju_scripts' );
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
require get_template_directory() . '/inc/admin_metaboxes.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/inc/template-functions.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
if ( defined( 'JETPACK__VERSION' ) ) {
require get_template_directory() . '/inc/jetpack.php';
}
function pagination() { // функция вывода пагинации
global $wp_query; // текущая выборка должна быть глобальной
$big = 999999999; // число для замены
$html = paginate_links( array( // вывод пагинации с опциями ниже
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
// что заменяем в формате ниже
'format' => '?paged=%#%',
// формат, %#% будет заменено
'current' => max( 1, get_query_var( 'paged' ) ),
// текущая страница, 1, если $_GET['page'] не определено
'total' => $wp_query->max_num_pages,
// общие кол-во страниц в пагинации
'type' => 'list',
// ссылки в ul
'prev_text' => '<i class="fa fa-arrow-left"></i>',
// текст назад
'next_text' => '<i class="fa fa-arrow-right"></i>',
// текст вперед
'show_all' => false,
// не показывать ссылки на все страницы, иначе end_size и mid_size будут проигнорированны
'end_size' => 3,
// сколько страниц показать в начале и конце списка (12 ... 4 ... 89)
'mid_size' => 3,
// сколько страниц показать вокруг текущей страницы (... 123 5 678 ...).
'add_args' => false,
// массив GET параметров для добавления в ссылку страницы
'add_fragment' => '',
// строка для добавления в конец ссылки на страницу
'before_page_number' => '',
// строка перед цифрой
'after_page_number' => ''
// строка после цифры
) );
$html = '<nav aria-label="Page navigation example">' . str_replace( "<ul class='page-numbers'>", '<ul class="pagination justify-content-center" >', $html );
$html = str_replace( "<li", '<li class="page-item"', $html );
$html = str_replace( "<span", '<span class="page-link"', $html );
echo str_replace( "<a", '<a class="page-link"', $html ) . '</nav>';
}
if ( ! class_exists( 'bootstrap_menu' ) ) {
class bootstrap_menu extends Walker_Nav_Menu { // внутри вывод
private $open_submenu_on_hover; // параметр который будет определять раскрывать субменю при наведении или оставить по клику как в стандартном бутстрапе
function __construct( $open_submenu_on_hover = true ) { // в конструкторе
$this->open_submenu_on_hover = $open_submenu_on_hover; // запишем параметр раскрывания субменю
}
function start_lvl( &$output, $depth = 0, $args = array() ) { // старт вывода подменюшек
$output .= "\n<ul class=\"dropdown-menu parent\">\n"; // ул с классом
}
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { // старт вывода элементов
$item_html = ''; // то что будет добавлять
parent::start_el( $item_html, $item, $depth, $args ); // вызываем стандартный метод родителя
// добавления атрибута для перевода меню
if ( $item->is_dropdown && $depth === 0 ) { // если элемент содержит подменю и это элемент первого уровня
$item_html = str_replace( '<a', '<a aria-haspopup="true" class=" ' . implode( ' ', $item->classes ) . '" ', $item_html );
$item_html = str_replace( '</a>', ' </a>', $item_html ); // ну это стрелочка вниз
if ( ! $this->open_submenu_on_hover ) // если подменю не будет раскрывать при наведении надо добавить стандартные атрибуты бутстрапа для раскрытия по клику
{
$item_html = str_replace( '</a>', ' </a>', $item_html );
} // ну это стрелочка вниз
}
$output .= $item_html; // приклеиваем теперь
$output = str_replace( ': ', '', $output );
}
function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) { // вывод элемента
$element->classes[] = 'vloz-' . $depth;
if ( isset( $element->current ) and $element->current ) {
$element->classes[] = 'active';
} // если элемент активный надо добавить бутстрап класс для подсветки
$element->is_dropdown = ! empty( $children_elements[ $element->ID ] ); // если у элемента подменю
if ( $element->is_dropdown ) { // если да
if ( $depth === 0 ) { // если li содержит субменю 1 уровня
$element->classes[] = 'dropdown-submenu'; // то добавим этот класс
if ( $this->open_submenu_on_hover ) {
$element->classes[] = '1-show-on-hover';
} // если нужно показывать субменю по хуверу
} elseif ( $depth === 1 ) { // если li содержит субменю 2 уровня
$element->classes[] = 'dropdown-submenu'; // то добавим этот класс, стандартный бутстрап не поддерживает подменю больше 2 уровня по этому эту ситуацию надо будет разрешать отдельно
}
}
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); // вызываем стандартный метод родителя
}
}
}
add_action( 'wp_default_scripts', 'move_jquery_into_footer' );
function move_jquery_into_footer( $wp_scripts ) {
if ( is_admin() ) {
return;
}
$wp_scripts->add_data( 'jquery', 'group', 1 );
$wp_scripts->add_data( 'jquery-core', 'group', 1 );
$wp_scripts->add_data( 'jquery-migrate', 'group', 1 );
}
function get_category_tags( $cats ) {
global $wpdb;
if ( is_array( $cats ) ) {
$name_file_to_cats = implode( '_', $cats ) . ".cat";
} else {
$name_file_to_cats = "_" . $cats . ".cat";
}
$path_to_file = get_template_directory() . "/cache_queries/" . $name_file_to_cats;
if ( false == file_exists( $path_to_file ) ) {
$tagscat = $wpdb->get_results
( "
SELECT DISTINCT terms2.term_id as tag_id, terms2.name as tag_name, t2.count as posts_count, null as tag_link
FROM
wp_posts as p1
LEFT JOIN wp_term_relationships as r1 ON p1.ID = r1.object_ID
LEFT JOIN wp_term_taxonomy as t1 ON r1.term_taxonomy_id = t1.term_taxonomy_id
LEFT JOIN wp_terms as terms1 ON t1.term_id = terms1.term_id,
wp_posts as p2
LEFT JOIN wp_term_relationships as r2 ON p2.ID = r2.object_ID
LEFT JOIN wp_term_taxonomy as t2 ON r2.term_taxonomy_id = t2.term_taxonomy_id
LEFT JOIN wp_terms as terms2 ON t2.term_id = terms2.term_id
WHERE
t1.taxonomy = 'category' AND p1.post_status = 'publish' AND terms1.term_id IN (" . $cats . ") AND
t2.taxonomy = 'post_tag' AND p2.post_status = 'publish'
AND p1.ID = p2.ID
ORDER by tag_name
" );
$out = null;
foreach ( $tagscat as $tagcurrentcat ) {
$out .= '<li><a href="' . get_tag_link( $tagcurrentcat->tag_id ) . '" class="hvr-float"><i class="fa fa-arrow-circle-o-right"></i> <strong>' . str_ireplace( 'с юбилеем 40 лет', '', $tagcurrentcat->tag_name ) . '</strong></a></li> ';
}
$front_end_html = rtrim( $out, ', ' );
file_put_contents( $path_to_file, serialize( $front_end_html ) );
return $front_end_html;
} else {
return unserialize( file_get_contents( $path_to_file ) );
}
}
// Обрезка контента при копировании по ***
add_filter( 'the_content', 'cut_content' );
function cut_content( $content ) {
$cut = explode( '***', $content );
if ( ! empty( $cut ) and count( $cut ) == '2' ) {
$return_content = $cut['0'];
return $return_content . '***<div id="post_copy_' . get_the_ID() . '" class="up-content text-left"><p>' . str_replace_once( '<br />', '', $cut['1'] ) . '</p></div>';
} else {
return '<span id="post_copy_' . get_the_ID() . '" class="up-content">' . $content . '<span class="nonne-dsp"> - Скопировано с ' . home_url() . '<div class="close-block"></div></span></span>';
}
}
;
function str_replace_once( $search, $replace, $text ) {
$pos = stripos( $text, $search );
return $pos !== false ? substr_replace( $text, $replace, $pos, strlen( $search ) ) : $text;
}
add_filter( 'xmlrpc_enabled', '__return_false' );
function remove_version() {
return '';
}
add_filter( 'the_generator', 'remove_version' );
// Отключаем сам REST API
add_filter( 'rest_enabled', '__return_false' );
// Отключаем фильтры REST API
remove_action( 'xmlrpc_rsd_apis', 'rest_output_rsd' );
remove_action( 'wp_head', 'rest_output_link_wp_head', 10, 0 );
remove_action( 'template_redirect', 'rest_output_link_header', 11, 0 );
remove_action( 'auth_cookie_malformed', 'rest_cookie_collect_status' );
remove_action( 'auth_cookie_expired', 'rest_cookie_collect_status' );
remove_action( 'auth_cookie_bad_username', 'rest_cookie_collect_status' );
remove_action( 'auth_cookie_bad_hash', 'rest_cookie_collect_status' );
remove_action( 'auth_cookie_valid', 'rest_cookie_collect_status' );
remove_filter( 'rest_authentication_errors', 'rest_cookie_check_errors', 100 );
remove_action( 'wp_head', 'wp_oembed_add_discovery_links' );
// если собираетесь выводить вставки из других сайтов на своем, то закомментируйте след. строку.
remove_action( 'wp_head', 'wp_oembed_add_host_js' );
remove_action( 'wp_head', 'wlwmanifest_link' );
remove_action( 'wp_head', 'rsd_link' );
remove_action( 'wp_head', 'wp_shortlink_wp_head' );
remove_filter( 'term_description', 'wpautop' );
function get_rand_color() {
$arr_color = array( 'primary', 'secondary', 'success', 'danger', 'warning', 'info', 'dark' );
return $arr_color[ rand( 0, 6 ) ];
}
function get_ordered_cat() {
$categories = get_the_category();
$category_tree = array();
$keyed_categories = array();
foreach ( (array) $categories as $c ) {
$category_tree[ $c->cat_ID ] = $c->category_parent;
$keyed_categories[ $c->cat_ID ] = $c;
}
$tiered_categories = array();
$tier = 0;
// This is the recursive bit
while ( ! empty( $category_tree ) ) {
$cats_to_unset = array();
foreach ( (array) $category_tree as $cat_id => $cat_parent ) {
if ( ! in_array( $cat_parent, array_keys( $category_tree ) ) ) {
$tiered_categories[ $tier ][] = $cat_id;
$cats_to_unset[] = $cat_id;
}
}
foreach ( $cats_to_unset as $ctu ) {
unset( $category_tree[ $ctu ] );
}
$tier ++;
}
// Walk through the tiers to order the cat objects properly
$ordered_categories = array();
foreach ( (array) $tiered_categories as $tier ) {
foreach ( (array) $tier as $tcat ) {
$ordered_categories[] = $keyed_categories[ $tcat ];
}
}
// Now you can loop over them and do whatever you want
return array_reverse( (array) $ordered_categories );
}
add_action( 'wp_head', function () {
echo '<script type="text/javascript"> var ajaxurl = \'' . admin_url( 'admin-ajax.php' ) . '\';</script>';
} );
add_action( 'wp_ajax_all_holidays', 'all_holidays_callback' );
add_action( 'wp_ajax_nopriv_all_holidays', 'all_holidays_callback' );
function all_holidays_callback() {
if ( wp_doing_ajax() ) {
global $wpdb;
$holiday_table = $wpdb->prefix . 'termmeta';
$table_terms = $wpdb->prefix . "terms";
! empty( $_REQUEST['param']['mounth'] ) ? $mounth = $_REQUEST['param']['mounth'] : $mounth = date( 'm' );
// Так як там усі дати за 2018, тоді треба це врахувати
$start_date = date( '2018-' . str_pad( $mounth, 2, '0', STR_PAD_LEFT ) . '-01' );
$tomorrowDATE = date( '2018-' . str_pad( $mounth, 2, '0', STR_PAD_LEFT ) . '-t' );
$get_all_holidays_by_range = $wpdb->get_results( "SELECT * FROM $holiday_table as termmeta
JOIN $table_terms as tax ON termmeta.term_id = tax.term_id
WHERE termmeta.meta_key = '__day_of_holiday' AND termmeta.meta_value
BETWEEN '" . $start_date . "' AND '" . $tomorrowDATE . "'" );
// sleep(4);
echo json_encode(
array(
'status' => 'success',
'result' => $get_all_holidays_by_range,
// 'query' => $wpdb->last_query,
// 'input' => $_REQUEST,
// 'mounth'=> $mounth
), JSON_UNESCAPED_UNICODE
);
}
wp_die();
}
add_action( 'wp_ajax_search', 'search_in_site' );
add_action( 'wp_ajax_nopriv_search', 'search_in_site' );
function search_in_site() {
if ( wp_doing_ajax() ) {
// include search file
require get_template_directory() . '/inc/search.php';
$word = esc_sql( $_REQUEST['word'] );
echo json_encode(
array(
'input' => $word,
'htmlCreateCategory' => search_category( $word ),
'htmlCreatePost' => search_post( $word ),
), JSON_UNESCAPED_UNICODE );
}
wp_die();
}
add_action( 'wp_head', 'create_fb_markup' );
function create_fb_markup() {
if ( is_single() ) {
global $post;
echo '<meta property="og:url" content="' . get_the_permalink( $post->ID ) . '" />';
echo '<meta property="og:type" content="article" />';
echo '<meta property="og:title" content="' . get_the_title( $post->ID ) . '" />';
echo '<meta property="og:description" content="12" />';
echo '<meta property="og:image" content="' . get_stylesheet_directory_uri() . '/img/logo.png" />';
}
}