Home › Forums › SEO, WordPress, Coding for the Web › What plugin use in this blog?
Tagged: plugin
- This topic has 5 replies, 2 voices, and was last updated 4 months, 3 weeks ago by
農曆新年展示水果禮籃.
-
AuthorPosts
-
-
ridhaParticipantI am interesting with your footer information
http://prntscr.com/a4v4ffCan I know what plugin use to show infromation “Uptime 1374 Days, 880 Posts and 10 Pages, 514 comments” in footer area?
thank you.
-
ACMerKeymasterHello, yes, it is not a plugin, it is a PHP code,
more details in this post: https://helloacm.com/how-to-display-blog-statistics-at-the-page-footer/
-
ACMerKeymaster<?php global $wpdb;// https://helloacm.com $query = "select count(1) from <code>wp_posts</code> where <code>post_status</code>='publish' and <code>post_type</code>='post'"; $cnt_posts = $wpdb->get_var($query); $query = "select count(1) from <code>wp_posts</code> where <code>post_status</code>='publish' and <code>post_type</code>='page'"; $cnt_pages = $wpdb->get_var($query); $query = "select count(1) from <code>wp_comments</code> where <code>comment_approved</code>=1"; $cnt_comments = $wpdb->get_var($query); $start = strtotime("2011-07-03 00:00:00"); // Need to replace the date to the date when you published your first article. $today = strtotime(date("Y-m-d h:i:s")); $days = round(abs($today - $start) / 3600 / 24); ?> -
ridhaParticipantHi, thank you for your answer.
What about the link and the page of https://helloacm.com/archives-of-pagesposts/. Is that plugin or not?
Where should I put the PHP code above, footer.php? Because I use schema mythemeshop too.
Thank you.
-
ACMerKeymasterHello,
check this post: https://helloacm.com/how-to-create-a-page-of-archives-summary-for-all-wordpress-postspages-using-php/
You would need a plugin to include PHP code in the pages
and you would need to create a page that runs a PHP file.
-
-
農曆新年展示水果禮籃Guest|A fabulous handbag can spruce up any outfit, but match it up with other bags you may also need to carry. For example, if you carry a briefcase, coordinate your handbag with your briefcase. You should only ever have a maximum of two bags on you at the same time.
-
-
AuthorPosts