WP Manifestindependent plugin directory
manifest / social / reactions-emoji

Reactions Emoji

Reactions with Emoji, SvelteJS, WordPress

by uptimizt · github.com/uptimizt/reactions-emoji

1stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/uptimizt/reactions-emoji/archive/refs/heads/main.zip

Readme

Reactions wity Emoji, WordPress, SvelteJS

demo

url https://bizzapps.ru/b/gist/

2022-01-22-16-40-52-s2q62

manual add

add shortcode to post [reactions-emoji]

auto add

add_filter("the_content", function($content){
    if ( ! is_singular('post')) {
        return $content;
    }

    ob_start();
    echo do_shortcode('[reactions-emoji]');

    $html = ob_get_clean();
    return $content . $html;
}, 8);

Read the full README on GitHub →