Добрый день, установил плагин wordpress.org/support/plugin/i-recommend-this
Так как ворпдресс только изучаю подскажите как я могу править количество лайков из админки.
Или посоветуете аналогичный плагин с функционалом правки количества лайков?
Вот здесь они обновляются если я праивльно понимаю
function ajax_callback($post_id)
{
$options = get_option( 'dot_irecommendthis_settings' );
if( !isset($options['add_to_posts']) ) $options['add_to_posts'] = '1';
if( !isset($options['add_to_other']) ) $options['add_to_other'] = '1';
if( !isset($options['text_zero_suffix']) ) $options['text_zero_suffix'] = '';
if( !isset($options['text_one_suffix']) ) $options['text_one_suffix'] = '';
if( !isset($options['text_more_suffix']) ) $options['text_more_suffix'] = '';
if( isset($_POST['recommend_id']) ) {
// Click event. Get and Update Count
$post_id = str_replace('dot-irecommendthis-', '', $_POST['recommend_id']);
echo $this->dot_recommend_this($post_id, $options['text_zero_suffix'], $options['text_one_suffix'], $options['text_more_suffix'], 'update');
} else {
// AJAXing data in. Get Count
$post_id = str_replace('dot-irecommendthis-', '', $_POST['post_id']);
echo $this->dot_recommend_this($post_id, $options['text_zero_suffix'], $options['text_one_suffix'], $options['text_more_suffix'], 'get');
}
exit;
а вот куда записываются не могу понять