wpmdb_rows_limit

wpmdb_rows_limit

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wp-migrate-db.2.6.9

apply_filters('wpmdb_rows_limit') is found 1 times:

  • /class/Common/Sql/Table.php line 1359
            $join     = implode(' ', array_unique($join));
            $join     = apply_filters('wpmdb_rows_join', $join, $table);
            $where    = apply_filters('wpmdb_rows_where', $where, $table);
            $order_by = apply_filters('wpmdb_rows_order_by', $order_by, $table);
            $limit    = apply_filters('wpmdb_rows_limit', $limit, $table);
    
            $sql = 'SELECT ' . $sel . ' FROM ' . $this->table_helper->backquote($table) . " $join $where $order_by $limit";
            $sql = apply_filters('wpmdb_rows_sql', $sql, $table);
    
            return $sql;
        }