• Robby G

    (@robbygreenan)


    Hello WordPress Community!

    I’m new to WordPress, but I’m loving it so far! I’m developing a business directory/review website and need some guidance on best practices, particularly post templates and database integration. I’m currently using Bricks Builder, (I was using seedprod but was told to be careful due to the possibility of speed issues later on).

    What I’m Trying to Achieve:

    • I want to create a post template for my WordPress site that features a table, essentially forming the core of my business directory. It will list amenities available, hours of operation, etc.
    • Since I’m going to have around 10,000 posts, I want to know the best way to set this up so it can scale. I was thinking the table should dynamically query data from a database, displaying relevant business listings.

    My Questions:

    1. Methodology: What is the recommended method to achieve this in WordPress? Should I use a specific plugin or is there a more direct coding approach?
    2. Performance Concerns: If a plugin is the preferred solution, are there any specific plugins known for efficiency and speed? I’m concerned about the potential impact on my website’s performance.
    3. Database Integration: Can you suggest any best practices or tips for smoothly integrating the database with my post template, ensuring that the data is easily retrievable and displayed correctly?

    I appreciate any insights or recommendations you can provide, including any tutorials, plugins, or resources that might be helpful in this endeavor. Excited to be part of the community!

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator bcworkz

    (@bcworkz)

    There are a good number of business directory plugins you could use. If you can find one that’s suitable it’ll save you a lot of development time. OTOH, developing a bespoke theme or plugin yourself allows you to get exactly what you want, at the cost of development time spent. But you’d likely learn a lot along the way ??

    I’m unable to suggest a particular plugin, but if a business’ meta data is saved as usual in the postmeta table, with 10k+ records you’ll likely see rather slow meta data queries. For speed, crucial meta data is better saved in a custom table where each data item has its own field. If you can locate a plugin that saves meta data this way, all the better. By “crucial” I mean data that’s used to restrict which records are selected in a query. Meta data that’s just incidentally collected in a query is OK in postmeta.

    If you decide to develop your own solution, review what resources are available at https://developer.www.ads-software.com/. You’re not expected to read everything, just peruse what’s on offer to be better acquainted with what’s available. You can later investigate specific portions in greater detail as the need arises.

    Thread Starter Robby G

    (@robbygreenan)

    Hello @bcworkz!

    Thank you for your insightful response regarding the development of a business directory on WordPress. Your points have given me a lot to consider, and I’ve made some decisions based on your advice.

    Per your advice, I’ve been exploring various plugins for managing the directory’s metadata, but I’m encountering a challenge. As you alluded to, most of the plugins I’ve found store metadata in the standard post meta table. As you mentioned, this might not be the most efficient approach, especially since I anticipate having a large number of records (10k+).

    Given my situation, I’m leaning toward custom implementation for metadata storage. Do you, or anyone else in the forum, have recommendations or resources that could guide me on how to effectively implement a custom table for metadata within a WordPress environment?

    Any tips on best practices for linking this custom table with my bespoke theme would also be greatly appreciated. I’m going throw the WordPress Developer as you suggested, and If I find anything I will post it here.

    Thanks again.

    Moderator bcworkz

    (@bcworkz)

    The main challenge with implementing a custom table is all the handy WP functions we are used to using are mostly useless. For example, we cannot easily use get_posts() if the query is to be restricted by custom table data. Instead we’d need to construct our own SQL query that joins in the custom table with wp_posts. Typically the join would be on post ID whose columns would exist in both tables.

    However, we can still use the global $wpdb connection object to make SQL queries, it’s just that we need to come up with our own SQL.

    The typical WP template loop leverages WP_Query methods to do its thing. It will not work very well when when we skip WP_Query and make our own SQL query. While it’s possible to impress our query results onto WP_Query properties, it’s kind of wasteful because WP_Query would have made its own query whose results we’re now discarding and replacing with our query’s results.

    It’d be better if we just executed our own loop instead of using the usual WP loop.

    There are a number of plugins that implement custom tables. You might try looking at the source code for one of these as guidance for your own efforts. Try to find a plugin which uses custom tables but is otherwise relatively simple. Hopefully its source code will be easier to follow.

    Sometimes example code is too complicated and difficult to follow. It might make more sense to forge your own way using an approach that you understand.

    Good luck and happy coding ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Advice on Creating a Business Directory Template with Database Integration’ is closed to new replies.