Skip to content

Instantly share code, notes, and snippets.

View doiftrue's full-sized avatar
💻
codding...

Timur Kamaev doiftrue

💻
codding...
View GitHub Profile
@doiftrue
doiftrue / functions.php
Last active January 10, 2024 08:25
https://wp-kama.ru/16747. Дополнение к плагину KCC: в шаблоне выводиться ссылка из метаполя 'comp_ref', количество кликов по ней дублируются в метаполе записи 'comp_ref_clicks'.
<?php
## Добавлет/обновляет количество кликов по ссылке из метаполя 'comp_ref' в метаполе 'comp_ref_clicks'
//do_action('kcc_count_after', $args, $updated, $data );
add_action( 'kcc_count_after', 'write_postmeta_link_clicks' );
function write_postmeta_link_clicks( $args ){
$post_id = (int) $args['in_post'];
if(
// пост не указан - не наш случай