CRUD Plugin for Wordpress

0

Does anyone know a tool (plugin) that allows you to customize simple CRUDS and access them in the wordpress interface?

    
asked by anonymous 29.05.2014 / 04:09

2 answers

1

It's not an interface, but just pointing out here that no plugin is needed to make generic CRUDs within WordPress. The system uses a global class called $ wpdb that already brings an open connection to the bank, so just use it as you would use an instance of PDO, for example.

Codex example:

<?php
    global $wpdb;

    $wpdb->query( 
        $wpdb->prepare( 
            "DELETE FROM $wpdb->postmeta
             WHERE post_id = %d
             AND meta_key = %s
            ",
            13, 'gargle' 
            )
    );

In the same way that you can run queries against the standard WP tables (as in the example) you can run against any other table that is in the same database.

    
04.08.2014 / 17:25
0

I know at least three:

I recommend seeing the features if they suit your case (which you could have detailed a little better maybe). I like wpDataTables more

    
29.05.2014 / 04:13