Skip to main content

Home/ Wordpress/ Group items tagged ...

Rss Feed Group items tagged

Jean-François Noubel

Daily Design Notes - Web Design, Development Blog - 4 views

  •  
    Site seems very well done, good info, amazing design
Anna Taylor

Open Source Content Management: One Big Happy (Disfunctional) Family - 1 views

  •  
    Content management systems have effectively replaced much of the tedious HTML and CSS work that was required to make changes to a website. A custom theme for your CMS still takes time and an experienced professional to execute, but business owners no longer face the hassle of learning code or paying a developer for ongoing changes for simple adjustments to content.
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

iLightBox · Revolutionary Lightbox Plugin - 3 views

  •  
    "iLightBox allows you to easily create the most beautiful responsive overlay windows using the jQuery JavaScript library. By combining support for a wide range of media with gorgeous skins and a user-friendly API, iLightBox aims to push the Lightbox concept as far as possible."
umers36

WordPress Blog Theme For Your Blog - 0 views

  •  
    Blogging has become a proper business to earn decent money. To get your blog up and running you need a very reliable framework. And the answer is WordPress. WordPress has become the standard for blogging as well as normal business websites. You will find hundreds of thousands wordpress blog themes across the web.
umers36

Ecommerce Website Template For Your E-Shop - Best Collection - 0 views

  •  
    Hi Geeks! I have written so much about having your own ecommerce website template to quickly setup your e-shop. You can find thousands of templates across the internet.
steve newman

Best E-Commerce Plugins for WordPress - 1 views

  •  
    Best E-Commerce Plugins for WordPress
Vernon Fowler

How to Create Meta Boxes in WordPress | WP Roots - 3 views

  •  
    Meta boxes are the the little blocks in the editor section for each post type. They are actually quite old in WordPress terms - they were introduced back in 2.5 and now almost every premium theme uses this feature. Here's what one looks like on my portfolio:
‹ Previous 21 - 40 of 3421 Next › Last »
Showing 20 items per page