Admin scores
-
Hi there,
Great plugin.
I would like to see as follows but my code is failing, as it is not working:
// Add to admin post column add_filter( 'manage_posts_columns', 'posts_column_likes' ); add_action( 'manage_posts_custom_column', 'posts_custom_column_likes', 5, 2 ); function posts_column_likes( $defaults ) { $defaults ['oacs_spl_get_like_count( $like_count )'] = __('Likes'); return $defaults; } function posts_custom_column_likes( $column_name, $post_id ){ if ( $column_name === 'Likes' ) { echo $oacs_spl_get_like_count($like_count); } }
Can you please provide some assistance?
Warm regards,
Irene
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Admin scores’ is closed to new replies.