Changeset 1651883
- Timestamp:
- 05/06/2017 12:43:18 AM (9 years ago)
- Location:
- ab-post-view-counter
- Files:
-
- 4 added
- 2 edited
-
tags/1.14 (added)
-
tags/1.14/ab-post-count-plugin.php (added)
-
tags/1.14/options.php (added)
-
tags/1.14/readme.txt (added)
-
trunk/ab-post-count-plugin.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ab-post-view-counter/trunk/ab-post-count-plugin.php
r1646705 r1651883 4 4 Plugin URI: http://aleksandar.bjelosevic.info/abpvc 5 5 Description: Plugin that count post/page views 6 Version: 1.1 36 Version: 1.14 7 7 Author: Aleksandar Bjelosevic 8 8 Author URI: http://aleksandar.bjelosevic.info … … 56 56 57 57 58 // SHOW THE POST COUNTER 58 // SHOW THE POST COUNTER ON POST 59 59 function ABPostCount_columns_content($column_name, $post_ID) { 60 60 global $post; … … 111 111 } 112 112 113 113 114 add_action("admin_init", "abpostview_settings"); 114 115 add_action("admin_menu", "abpostview_menu_item"); 115 116 add_action("wp_head", "abpost_add_view"); 116 117 add_filter("the_content", "ab_postview_counter" ); 118 add_filter('manage_pages_columns', 'ABPostCount_columns_head'); 117 119 add_filter('manage_posts_columns', 'ABPostCount_columns_head'); 118 120 add_action('manage_posts_custom_column', 'ABPostCount_columns_content', 10, 2); 121 add_action('manage_pages_custom_column', 'ABPostCount_columns_content', 10, 2); 119 122 ?> -
ab-post-view-counter/trunk/readme.txt
r1646700 r1651883 5 5 Requires at least: 3.8 6 6 Tested up to: 4.7.4 7 Stable tag: 1.1 37 Stable tag: 1.14 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 13 13 == Description == 14 14 15 Just simple plugin to view post counter15 Just simple plugin to view post/page counter 16 16 17 17 == Installation == … … 25 25 == Changelog == 26 26 27 = V1.12 = 27 = V1.14 = 28 Add post view counter in All page screen 29 30 = V1.13 = 28 31 Add to custom post types (page etc) 29 32
Note: See TracChangeset
for help on using the changeset viewer.