View Single Post
Old 03-27-2015, 08:39 AM  
HowlingWulf
Confirmed User
 
HowlingWulf's Avatar
 
Join Date: Nov 2001
Posts: 1,662
Now sure how TGPX works with images, but if they're attached to the posts you can use this function in your theme:

Code:
function total_images() {
        global $wpdb;
        $images=  $wpdb->get_var("
                SELECT COUNT(ID) FROM $wpdb->posts
                WHERE (post_mime_type LIKE 'image/%')
                AND post_type = 'attachment'
                AND (post_status = 'inherit')
                AND post_parent > 0
        ");
        echo 'total attached images= '. $images;
}
__________________
WP Porn directory/review theme Maddos $35.

webmaster AT howling-wulf.com
HowlingWulf is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote