Skip to main content

Home/ Wordpress/ Group items tagged fields Content

Rss Feed Group items tagged

Vernon Fowler

Advanced custom fields - Addons - WordPress Plugin of the Week - 3 views

  •  
    Advanced Custom Fields plugin allows developers to take full control of the edit screens & custom field data. Add-ons also allow you to extend the functions even further from limiting characters in a textarea, building unique designed admin pages with the flexible content layout manager to easily including Gravity Forms or Contact Form 7 forms.
Luciano Ferrer

WordPress › Advanced Custom Fields « WordPress Plugins - 4 views

  •  
    "Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it's a must have for any web dev Advanced Custom Fields is the perfect solution for any wordpress website which needs more flexible data like other Content Management Systems."
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
william x

Flutter : WordPress CMS Plugin by Freshout - 4 views

  •  
    flutter is a kind of CCK Content Creation Kit for Wordpress, you can create custom fields and groups (example, model, price, picture), retrieve and create templates for your data sets
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 › List category posts « WordPress Plugins - 2 views

  •  
    "List Category Posts allows you to list posts from a category into a post/page using the [catlist] shortcode. The shortcode accepts a category name or id, the order in which you want the posts to display, and the number of posts to display. You can also display the post author, date, excerpt, custom field values, even the content! The [catlist] shortcode can be used as many times as needed with different arguments on each post/page."
alex smith

Wordpress Development India - 0 views

  •  
    Wordpress Development is more than a simple blogging tool. As an open resource it is an invaluable platform for designing and sustaining websites. The awesome Wordpress themes help in tagging the content of the website; in the creation of widgets as well as rearrangement without disturbing the coding of the site.
  •  
    Remember that while developing Wordpress themes in India you want to create an interface that is not only robust but also easy to use. This is because not all clients are tech savvy. So you need to hide your custom field entries to steer clear of confusion and keep your posts clutter free. The developers at Wits Technologies are aware while using Wordpress development India the value of any required custom field can be generated dynamically through your code or through a custom user interface.
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.
1 - 14 of 14
Showing 20 items per page