ap_append_table_names()
Description #
Append table name in $wpdb.
Source #
File: includes/functions.php
function ap_append_table_names() { global $wpdb; $wpdb->ap_qameta = $wpdb->prefix . 'ap_qameta'; $wpdb->ap_votes = $wpdb->prefix . 'ap_votes'; $wpdb->ap_views = $wpdb->prefix . 'ap_views'; $wpdb->ap_reputations = $wpdb->prefix . 'ap_reputations'; $wpdb->ap_subscribers = $wpdb->prefix . 'ap_subscribers'; $wpdb->ap_activity = $wpdb->prefix . 'ap_activity'; $wpdb->ap_reputation_events = $wpdb->prefix . 'ap_reputation_events'; }
Expand full source code Collapse full source code View on GitHub: includes/functions.php:1108
Add your comment