Skip to main content

Home/ Wordpress/ Group items tagged types CMS

Rss Feed Group items tagged

william x

Pods CMS - 2 views

  •  
    Wordpress evolved. Pods lets you create, manage, and display custom content types using WordPress. Like Dupal CCK, these content types can relate to one another, allowing for sites packed with interconnectedness.
  •  
    Pods is a CMS framework for WordPress. It's a plugin that sits on top of WordPress, allowing you to add and display your own content types. These content types, or "pods", are totally separate from Posts, Pages, or Custom Fields. The Pods plugin uses its own database structure for maximum efficiency, and for relationships among items.
  •  
    create and customize tables with templates and roles for wordpress
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.
Vernon Fowler

Types Plugin - WordPress Custom Post Types and Custom Fields - 4 views

  • Types Plugin – Custom Post Types, Taxonomies and Custom Fields Types is the integrated solution for customizing WordPress. You’ll be able to create custom post types, taxonomy and custom fields – all from within the WordPress GUI.
kie guy

How To Make Wordpress An CMS With Different Post Types « how-to, tools, wordp... - 0 views

  •  
    Pods = think Drupal's CCK for Wordpress (or ZOO or K2 for Joomla).
Vernon Fowler

Types intro on Vimeo - 0 views

  •  
    Shows how the Types WordPress plugin is used to create custom post types, taxonomy and fields.
anonymous

Custom Post Type UI - 0 views

  •  
    Admin UI for creating custom post types and custom taxonomies in WordPress
Vernon Fowler

A Guide to WordPress Custom Post Types: Creation, Display and Meta Boxes | Wptuts+ - 0 views

  • 'menu_icon' => plugins_url( 'images/image.png', __FILE__ ) displays the admin menu icon.
  • Save a 16×16 pixel icon image in your current plugin folder.
Vernon Fowler

WordPress › Content Audit « WordPress Plugins - 4 views

  • You can display the audit details to logged-in editors on the front end if you want, either above or below the content. You can style the audit message.
  • If you want to see sparklines from Google Analytics, also install the Google Analytics Dashboard plugin. This will give you some idea of how popular an article is, which might influence your decisions.
  •  
    Lets you create a content inventory right in the WordPress Edit screens. You can mark content as redundant, outdated, trivial, or in need of a review for SEO or style. The plugin creates a custom taxonomy (like a new set of categories) that's visible only from the admin screens. Since the content status labels work just like categories, you can remove the built-in ones and add your own if you like. You can also assign a content owner (distinct from the original author) and keep notes. The IDs are revealed on the Edit screens so you can keep track of your content even if you change titles and permalinks. The plugin supports the new custom content types in 3.0.
anonymous

WP Coda Slider - 0 views

  •  
    Add a jQuery Coda Slider in no conflict mode to any WordPress page, post or custom post type using shortcodes or template tags.
anonymous

WP Slick Slider - 0 views

  •  
    Utilising the power of custom post types and Custom meta boxes, adds a powerful and customisable slider to your wordpress site.
anonymous

Advanced Custom Fields - 0 views

  •  
    Completely Customise your edit pages with an assortment of field types: Wysiwyg, Repeater, text, image, select, checkbox, page link …
Miren Berasategi

How to use WordPress to run a magazine, news website - 0 views

  •  
    Turn Wordpress into a magazine.
  •  
    WordPress, however, is an extensible website content management system that can be used to run magazine-type websites. Here are steps I took to turn this online magazine on Cebu from a blog into its current presentation. I'm still working on it, though, so you might encounter issues.
1 - 20 of 22 Next ›
Showing 20 items per page