Я использую плагин реакции. Я хочу изменить позицию плагина не после публикации контента, добавив шорткод
public function add_public_post_view( $content ) {
global $emojis, $votes, $post;
$template_content = '';
$emojis = $this->get_emojis();
$votes = array();
foreach( $emojis as $key => $e ):
$votes[$key] = $this->get_vote( $post->ID, str_replace( ':', '', $key ) );
endforeach;
if( is_single() ):
ob_start();
$template = $this->locate_template('reactions-display.php', false);
include_once($template);
$template_content = ob_get_clean();
endif;
return $content . $template_content;
}
public function __construct( $plugin_name, $version ) {
....
}