Skip to main content

Home/ Wordpress/ Group items tagged In

Rss Feed Group items tagged

abhishekkundu

How To Add .html in your WordPress URL | BloggersHive - 0 views

  •  
    "How To Add .html in your WordPress URL"
Aman Khani

Linux Shared Hosting - 0 views

  •  
    If you have a small business and you want online presence it might be costly. However there are many way you can promote your business online in affordable cost. Website is the platform for your online presence so know how to host you website in an affordable price.
Peter Nilsson

Increase Usefulness With Custom Taxonomy In WordPress - 0 views

  •  
    If you want more flexibility in your website content that built-in taxonomies cannot provide? You can create a custom taxonomy to meet your desired goals.
AResource Pool

Why hire WordPress developers India - AResourcePool - 0 views

  •  
    With more than 5 years experiences, we are offering WordPress development services with Hire WordPress Developer India. Our experts with more than years of proficiency in the industry of web and mobile app development gained excellent reputation for the company best WordPress website development company India. Hire WordPress Developer India, Hire Wordpress developers India, website and mobile app development company India, website development & app development company in Noida , WordPress Development Services
waiometra

Av Model Class II Type A2 Biosafety Cabinet Manufacturer in India - 0 views

  •  
    Waiometra one of the leading biosafety cabinet manufacturer in India, our class II type biological safety cabinet is a partially enclosed work-space that has built in fortification for the worker, the environment, and the material inside of it.
formbuilder

Hire Xamarin Development Company in Texas - 0 views

  •  
    Hire Xamarin Developer is a cross-platform app development company which since about 7 years is constantly delivering the wonderful and flawless services in the development of multi-purpose and feature worthy business mobile applications. Do not hesitate to contact us in case of any app development services. Please visit our website : http://hire-xamarin-developer.com/
lilymaclanaau

Rectifying the issue when you see the message 'coming soon' in Norton - 1 views

  •  
    In this blog, we going to explain Rectifying the issue when you see the message 'coming soon' in Norton and in case you need any assistance then dial Norton technical support toll-free number Australia 1-800-958-211.
Luciano Ferrer

How to: Add shortcodes in sidebar Widgets - 1 views

  •  
    "To allow shortcodes in sidebar widgets, simply edit the functions.php file from your them and add the following code: add_filter('widget_text', 'do_shortcode');"
gialloporpora

Launching WordPress into the Google cloud - Google Developers Blog - 7 views

  •  
    WordPress is popular blogging software used by over 60 million people. If you have a WordPress blog, you want to ensure that your server load is manageable and that your load times are fast. You also want your data to be protected in case your server fails. With that in mind, we at OblakSoft created the Cloud Storage Engine for MySQL (ClouSE). It stores all your WordPress data on Google Cloud Storage, taking the load off your server to improve reliability and speed, and to reduce hosting costs.
Vernon Fowler

Post Types « WordPress Codex - 1 views

  • it is better if you prefix your identifier with a short namespace that identifies your plugin, theme or website that implements the custom post type. For example: acme_product or aw_product for products post type used by a hypothetical ACMEWidgets.com website
  • Namespacing your custom post type identifier will not guarantee against conflicts but will certainly minimize their likelihood.
  • Do pay close attention to not having your custom post type identifier exceed 20 characters though, as the post_type column in the database is currently a VARCHAR field of that length.
  • ...6 more annotations...
  • register_post_type( 'acme_product', array( 'labels' => array( 'name' => __( 'Products' ), 'singular_name' => __( 'Product' ) ), 'public' => true, 'has_archive' => true, ) );
  • When you namespace a custom post type identifier and still want to use a clean URL structure, you need to set the rewrite argument of the register_post_type() function. For example, assuming the ACME Widgets example from above:
  • 'rewrite' => array('slug' => 'products'),
  • Note: In some cases, the permalink structure must be updated in order for the new template files to be accessed when viewing posts of a custom post type.
  • single posts of a custom post type will use single-{post_type}.php and their archives will use archive-{post_type}.php where {post_type} is the $post_type argument of the register_post_type() function.
  • In any template file of the WordPress theme system, you can also create new queries to display posts from a specific post type. This is done via the post_type argument of the WP_Query object.
Luciano Ferrer

WordPress › Subscribe2 « WordPress Plugins - 2 views

  •  
    "Sends a list of subscribers an email notification when new posts are published to your blog Subscribe2 provides a comprehensive subscription management and email notification system for WordPress blogs that sends email notifications to a list of subscribers when you publish new content to your blog. Email Notifications can be sent on a per-post basis or periodically in a Digest email. Additionally, certain categories can be excluded from inclusion in the notification and posts can be excluded on an individual basis by setting a custom field."
Luciano Ferrer

WordPress › Tweet2Download « WordPress Plugins - 0 views

  •  
    "Tweet2Download allows a wordpress blog to require a tweet and a follow in exchange for the downloads or article parts available on the blog. If you have a blog that provides downloads, this plugin is the perfect twitter marketing tool for you. Tweet2Download allows you to require a tweet and a follow in exchange for a download or a content snippet on your blog. It effectively asks your users to "pay" with a tweet for free content on your blog, making it a very powerfull viral marketing tool."
Vernon Fowler

WordPress 3.5 And WPDB Prepare - 0 views

  • “Warning: Missing argument 2 for wpdb::prepare()” How do I fix it? If you are seeing an error after upgrading to WordPress 3.5 that says something like this, you need to upgrade your theme. We have fixed this with all of our themes and they are ready to download and re-install from your account page. What if I have customized my theme’s code and don’t want to upgrade? For those of you who have customized your theme’s code and don’t want to do a full upgrade, you’ll need to take a look at the warning message. Here’s a sample error we have fixed from the Biznify Theme: Warning: Missing argument 2 for wpdb::prepare(), called in /home/mintthem/public_html/demo/wp-content/themes/Biznify/products-pagetemplate.php on line 39 and defined in /home/mintthem/public_html/demo/wp-includes/wp-db.php on line 990 Step 1: Open the file it tells you to open. In this case, it is products-pagetemplate.php and Go to the line it refers to. In this case it is line 39 Step 2: Find the code that looks like this: $wpdb->prepare(“SELECT price FROM $table_name WHERE item_number = ‘$item_number’;”) Step 3: Replace $item_number with %d Step 4: Add $item_number after the last quotation mark. Also, make sure to put a comma before it. (notice the comma before $item_number below) Example: $wpdb->prepare(“SELECT price FROM $table_name WHERE item_number = ‘%d‘;”, $item_number)
  • $price = $wpdb->get_var($wpdb->prepare(“SELECT price FROM $table_name WHERE item_number = ‘%d‘;”, $item_number));
  • WordPress 3.5 And WPDB Prepare
Vernon Fowler

How to Add Additional User Profile Fields in WordPress Registration - 0 views

  •  
    How to Add Additional User Profile Fields in #WordPress Registration - http://t.co/KNYirC3Syn
Vernon Fowler

How to Widgetize Your WordPress / BuddyPress 404 Page in 2 Simple Steps - WPMU.org - 1 views

  •  
    Step 1: Register the 404 Widget Area in Functions.php Step 2: Add the 404 Widget Tag to 404.php
Erik Emanuelli

How to Improve Internal Search in WordPress - 0 views

  •  
    Why improve internal search in WordPress? When you own a site, you need to put your content first and a good search feature is one of the top ways to do so.
Erik Emanuelli

Image Optimization in WordPress - 6 Tips to Speed Up Your Site - 0 views

  •  
    When done right, image optimization in WordPress keeps the file size of images low, which means they can be served more quickly. Here's how to get that.
Erik Emanuelli

The Importance of Caching in WordPress - 1 views

  •  
    What exactly is caching in WordPress all about? How should we employ caching to boost the performance of our websites? This article lists all the answers!
Erik Emanuelli

How to Fix 404 Errors in WordPress Using 301 Redirects - 0 views

  •  
    404 errors are bad news for site engagement. Today we show you how to fix 404 errors in WordPress using 301 redirects with a freely available plugin.
« First ‹ Previous 101 - 120 of 1068 Next › Last »
Showing 20 items per page