-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
77 lines (56 loc) · 1.67 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
=== Post emoji ===
Contributors: wppunk
Donate link: https://www.liqpay.ua/api/3/checkout?data=eyJ2ZXJzaW9uIjozLCJhY3Rpb24iOiJwYXlkb25hdGUiLCJwdWJsaWNfa2V5IjoiaTM0ODU5MzcyNjEwIiwiYW1vdW50IjoiMCIsImN1cnJlbmN5IjoiVUFIIiwiZGVzY3JpcHRpb24iOiLQodC%2F0LDRgdC40LHQviDQsNCy0YLQvtGA0YMg0LfQsCBTaGlwcGluZyBOb3ZhIFBvc2h0YSBmb3IgV29vQ29tbWVyY2UiLCJ0eXBlIjoiZG9uYXRlIiwibGFuZ3VhZ2UiOiJydSJ9&signature=rGy8tJ7N1bDPT8o0wxvI0G59vRw%3D
Tags: emoji, posts vote, эмоции, голосование
Requires at least: 4.9
Tested up to: 5.5
Stable tag: 1.0.0
Requires PHP: 5.6
License: MIT
Plugin description in search plugin.
== Description ==
Just add the shortcode [emoji] for your post and display a list of emoji. Your customers can easily vote for your posts.
= Features =
* Emoji for the posts
== Installation ==
1. Upload `emoji` folder to the `/wp-content/plugins/` directory.
2. Activate the plugin through the 'Plugins' menu in WordPress.
== Frequently Asked Questions ==
= How to add emoji to the posts via code =
`
if ( function_exists( 'the_emoji' ) ) {
the_emoji();
}
`
Or
`
echo do_shortcode( '[emoji]' );
echo do_shortcode( '[emoji post_id="15"]' );
`
= How to print emoji count in the loop =
`
if ( function_exists( 'the_emoji_count' ) {
the_emoji_count( get_the_ID() );
}
`
== Changelog ==
= 1.0.6 =
* Removed unnecessary index
* Added automatically filling the date column
* Added `emoji` function that has given access to the DIC
= 1.0.5 =
* Fixed the_content filter
= 1.0.4 =
* Removed emoji from feeds
* Minified assets
= 1.0.3 =
* Fixed first vote
= 1.0.2 =
* Added activation hook
= 1.0.1 =
* Initial release
= 1.0.0 =
* Initial release
== Upgrade Notice ==
= 1.0.0 =
* Initial release