Skip to main content

Home/ Wordpress/ Group items tagged column

Rss Feed Group items tagged

Kim Woodbridge

Free WordPress themes | Loon Design - 0 views

  •  
    It is stable and great! Blue Blog is a 3 Column themes that mostly for bloggers. It contain 2 widget-ready sidebar, custom templates, integrated pulgins and integrated digg, delicious and stumbleupon for every posts. You can preview it here. It's compatible with WordPress 2.5.1 and has been tested with in Firefox, Internet Explorer 6 & &, Opera, and Safari.
hicham hicham

Free Wordpress Themes Restaurant Blog Template - 0 views

  •  
    Wordpress Restaurant Menu Web2.0 Theme Template, Come with 2 Columns, web2.0 Theme Template, This theme is compatible with WordPress 2.7, ready for threaded comments come with WP 2.7, and tested on various major web browsers. Besides the integration of widely used function PageNavi, we add a brand new function to this theme - Quotable Commentary! With this function you can select any part of the article, quote it and reply, by just one click, Suitable For Restaurants Blogs Or City/Country Restaurants Directory Blogs, This work is under Creative Commons Attribution-Share Alike 3.0 License, This means you may use it and make any changes you like, However, credit links must remain on footer for legal use, This Theme Was Tested and Work Fine On IE 6.0 & 7.0, Mozilla Firefox, Opera 9.02, Google Chrome and Safari Web Browsers, this Theme Was Tested on The Latest Wordpress Version Also.
hicham hicham

Free Wordpress Blue Theme Template - 0 views

  •  
    Wordpress Blue Digital Web2.0 Theme Template is a Web2.0 Template, with 2 Columns, Works with latest WordPress release, Rounded Corners, Fixed Width, Feedburner Integration Plugin, Flickr Plugin, Photoshop PSD Files Included and Widget Ready, This Theme is Suitable For any Kind of Blogging, Neutral Theme and so easy to edit and Free To Download, This work is under Creative Commons Attribution-Share Alike 3.0 License, This means you may use it and make any changes you like, However, credit links must remain on footer for legal use, This Theme Was Tested and Work Fine On IE 6.0 & 7.0, Mozilla Firefox, Opera 9.02, Google Chrome and Safari Web Browsers, this Theme Was Tested on The Latest Wordpress Version Also.
hicham hicham

Free Wordpress Themes Vector Design Template - 0 views

  •  
    Wordpress Nature Flowers Web2.0 Theme Template is a Web2.0 Template, with 2 Columns, Works with latest WordPress release, Photoshop PSD Files Included and Widget Ready, This Theme is suitable For any Kind of Blogging, and Nature or Flowers Blogging, This work is under Creative Commons Attribution-Share Alike 3.0 License, This means you may use it and make any changes you like, However, credit links must remain on footer for legal use, This Theme Was Tested and Work Fine On IE 6.0 & 7.0, Mozilla Firefox, Opera 9.02, Google Chrome and Safari Web Browsers, this Theme Was Tested on The Latest Wordpress Version Also.
hicham hicham

Music Grunge Magazine Wordpress Theme - 6 views

  •  
    Music Grunge Magazine Wordpress Theme, One Of The Best Wordpress Music Magazine Themes Templates, This Theme Has a Unique Design and a Good Easy To Edit Layout, Perfect for Music Blogs and Sites, The Theme Has a Number of Features Such as Theme Options For Setting 125x125 Advertisements, JQuery Powered Tabber and Social Bookmarks, Two Column Fixed Layout, Dropdown Menu, Gravatar Ready, Widget Ready, SEO Optimized, Fixed width, Logo .PSD file and Font Files are Included in Theme Folder, Right Sidebar, Dark Brown, Vector Grunge Banner
Oscar Gonzalez

How to use nested shortcodes - 0 views

  •  
    Jshortcodes is one of my favorite plugins for WordPress, It lets you easily add columns, boxes, buttons and other goodies when you get creative.  One of the tricks is adding nested objects. Here are the tips on how to make those happen.
  •  
    jshortcodes are pretty cool and useful from time to time
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.
‹ Previous 21 - 28 of 28
Showing 20 items per page