Plugin Directory

Changeset 1651883


Ignore:
Timestamp:
05/06/2017 12:43:18 AM (9 years ago)
Author:
abjelosevic
Message:

V1.14

Add post view counter in All page screen

Location:
ab-post-view-counter
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • ab-post-view-counter/trunk/ab-post-count-plugin.php

    r1646705 r1651883  
    44   Plugin URI: http://aleksandar.bjelosevic.info/abpvc
    55   Description: Plugin that count post/page views
    6    Version: 1.13
     6   Version: 1.14
    77   Author: Aleksandar Bjelosevic
    88   Author URI: http://aleksandar.bjelosevic.info
     
    5656
    5757
    58 // SHOW THE POST COUNTER
     58// SHOW THE POST COUNTER ON POST
    5959function ABPostCount_columns_content($column_name, $post_ID) {
    6060global $post;
     
    111111}
    112112
     113
    113114add_action("admin_init", "abpostview_settings");
    114115add_action("admin_menu", "abpostview_menu_item");
    115116add_action("wp_head", "abpost_add_view");
    116117add_filter("the_content", "ab_postview_counter" );
     118add_filter('manage_pages_columns', 'ABPostCount_columns_head');
    117119add_filter('manage_posts_columns', 'ABPostCount_columns_head');
    118120add_action('manage_posts_custom_column', 'ABPostCount_columns_content', 10, 2);
     121add_action('manage_pages_custom_column', 'ABPostCount_columns_content', 10, 2);
    119122?>
  • ab-post-view-counter/trunk/readme.txt

    r1646700 r1651883  
    55Requires at least: 3.8
    66Tested up to: 4.7.4
    7 Stable tag: 1.13
     7Stable tag: 1.14
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    1313== Description ==
    1414
    15 Just simple plugin to view post counter
     15Just simple plugin to view post/page counter
    1616
    1717== Installation ==
     
    2525== Changelog ==
    2626
    27 = V1.12 =
     27= V1.14 =
     28Add post view counter in All page screen
     29
     30= V1.13 =
    2831Add to custom post types (page etc)
    2932
Note: See TracChangeset for help on using the changeset viewer.