Support

Account

Home Forums ACF PRO How to query posts filtered by custom field values from external database Reply To: How to query posts filtered by custom field values from external database

  • Hi @soko

    Thanks for the post.

    Yes this could be achieved by SQL, you would need something like this:

    <?php
    $wpdbtest_otherdb = new wpdb('username', 'password', 'shops', 'websitesql.whatever.com');
    $wpdbtest_otherdb->show_errors();
    $myshops = $wpdbtest_otherdb->get_results("SELECT * FROM shops");
    foreach ($myshops as $myshop) {
    echo $myshop->shopName . '<br />';
    }
    ?>