Changeset 2331907
- Timestamp:
- 06/28/2020 08:31:04 AM (6 years ago)
- Location:
- db-share-count
- Files:
-
- 3 edited
- 4 copied
-
tags/0.2.2 (copied) (copied from db-share-count/trunk)
-
tags/0.2.2/changelog.txt (copied) (copied from db-share-count/trunk/changelog.txt) (1 diff)
-
tags/0.2.2/db_share_count.php (copied) (copied from db-share-count/trunk/db_share_count.php) (2 diffs)
-
tags/0.2.2/readme.txt (copied) (copied from db-share-count/trunk/readme.txt) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/db_share_count.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
db-share-count/tags/0.2.2/changelog.txt
r2331816 r2331907 2 2 3 3 All notable changes to the project will be documented in this file. 4 5 ## [0.2.2] 6 ### 7 - bug fixes 4 8 5 9 ## [0.2.1] -
db-share-count/tags/0.2.2/db_share_count.php
r2331816 r2331907 4 4 Plugin URI: https://github.com/Crasily/db_share_count 5 5 Description: Social share buttons with count 6 Version: 0.2. 16 Version: 0.2.2 7 7 Author: Nathan Webb 8 8 License: GPLv2 or later … … 31 31 $counts = dbsc_get_counts_for_php(); 32 32 $minCount = dbsc_get_min_count(); 33 $permalink = get_the_permalink(); 33 34 $dbsc_content = '<div class="dbsc_icons"><p>Like it? Share it…</p>'; 34 $dbsc_content .= dbsc_add_button ('f', $counts, $minCount);35 $dbsc_content .= dbsc_add_button ('p', $counts, $minCount);36 $dbsc_content .= dbsc_add_button ('t', $counts, $minCount);35 $dbsc_content .= dbsc_add_button_facebook($counts, $minCount, $permalink); 36 $dbsc_content .= dbsc_add_button_pinterest($counts, $minCount, $permalink); 37 $dbsc_content .= dbsc_add_button_twitter($counts, $minCount, $permalink); 37 38 $dbsc_content .= '</div>'; 38 39 return $dbsc_content; -
db-share-count/tags/0.2.2/readme.txt
r2331816 r2331907 68 68 69 69 == Changelog == 70 = 0.2.2 = 71 * bug fixes 72 70 73 = 0.2.1 = 71 74 * removed gplus and stumbleupon -
db-share-count/trunk/changelog.txt
r2331816 r2331907 2 2 3 3 All notable changes to the project will be documented in this file. 4 5 ## [0.2.2] 6 ### 7 - bug fixes 4 8 5 9 ## [0.2.1] -
db-share-count/trunk/db_share_count.php
r2331816 r2331907 4 4 Plugin URI: https://github.com/Crasily/db_share_count 5 5 Description: Social share buttons with count 6 Version: 0.2. 16 Version: 0.2.2 7 7 Author: Nathan Webb 8 8 License: GPLv2 or later … … 31 31 $counts = dbsc_get_counts_for_php(); 32 32 $minCount = dbsc_get_min_count(); 33 $permalink = get_the_permalink(); 33 34 $dbsc_content = '<div class="dbsc_icons"><p>Like it? Share it…</p>'; 34 $dbsc_content .= dbsc_add_button ('f', $counts, $minCount);35 $dbsc_content .= dbsc_add_button ('p', $counts, $minCount);36 $dbsc_content .= dbsc_add_button ('t', $counts, $minCount);35 $dbsc_content .= dbsc_add_button_facebook($counts, $minCount, $permalink); 36 $dbsc_content .= dbsc_add_button_pinterest($counts, $minCount, $permalink); 37 $dbsc_content .= dbsc_add_button_twitter($counts, $minCount, $permalink); 37 38 $dbsc_content .= '</div>'; 38 39 return $dbsc_content; -
db-share-count/trunk/readme.txt
r2331816 r2331907 68 68 69 69 == Changelog == 70 = 0.2.2 = 71 * bug fixes 72 70 73 = 0.2.1 = 71 74 * removed gplus and stumbleupon
Note: See TracChangeset
for help on using the changeset viewer.