php shortcode google_analytics_views
-
How can I copy a value shortcode
[google_analytics_views]in any field?Work example plugin “Google Analytics Dashboard”
$data = new GADWidgetData(); $views = $data->gad_pageviews_text($id); if ($views !== '') { if (get_post_meta($postid, 'views', FALSE)) { update_post_meta($postid, 'views', $views); } else { add_post_meta($postid, 'views', $views); } };https://ww.wp.xz.cn/plugins/google-analytics-top-posts-widget/
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘php shortcode google_analytics_views’ is closed to new replies.