Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aiiddqd/reactions-emoji
Reactions with Emoji, SvelteJS, WordPress
https://github.com/aiiddqd/reactions-emoji
emoji fetch javascript rest-api sveltejs wordpress
Last synced: about 5 hours ago
JSON representation
Reactions with Emoji, SvelteJS, WordPress
- Host: GitHub
- URL: https://github.com/aiiddqd/reactions-emoji
- Owner: aiiddqd
- License: gpl-3.0
- Created: 2022-01-19T07:58:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-23T04:36:01.000Z (almost 3 years ago)
- Last Synced: 2024-05-10T18:28:43.775Z (8 months ago)
- Topics: emoji, fetch, javascript, rest-api, sveltejs, wordpress
- Language: JavaScript
- Homepage:
- Size: 183 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Reactions wity Emoji, WordPress, SvelteJS
- roadmap https://github.com/uptimizt/reactions-emoji/issues/1
- prototypes https://github.com/uptimizt/reactions-emoji/issues/2# demo
url https://bizzapps.ru/b/gist/
## 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);
```