Scroll to top

Blog

I would like to discuss on whatever your requirement will be. Also I feel pleasure to be a part on that. So let’s just the conversation and finish this in efficient way.

How to fetch data from database in wordpress?

<table border=”1″> <tr> <th>Name</th> <th>Phone no.</th> <th>city</th> </tr> <tr> <?php global $wpdb; $result = $wpdb->get_results ( “SELECT * FROM myTable” ); foreach ( $result as $print ) { echo ‘<td>’

Read More »

How to Remove WooCommerce Breadcrumbs in WordPress?

Remove WooCommerce Breadcrumbs in WordPress add_action(‘template_redirect’, ‘remove_shop_breadcrumbs’ ); function remove_shop_breadcrumbs(){     if (is_shop())         remove_action( ‘woocommerce_before_main_content’, ‘woocommerce_breadcrumb’, 20, 0); } OR if(is_shop()){ … } // shop

Read More »