Skip to main content

Home/ Wordpress/ Group items tagged widget

Rss Feed Group items tagged

Peter Nilsson

Great Tips On How To Create WordPress Forms With Plugins - 0 views

  •  
    With WordPress forms plugins, you can interact with the audience of your blog with a form on a page or in a widget to attract the readers to subscribe.
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

How to Include JavaScript and CSS in Your WordPress Themes and Plugins | Wptuts+ - 0 views

  • a selection of common JavaScript libraries are already included that you can use for your JavaScript development
  • be selective about which pages you load your scripts on. If your plugin or theme has a script that only does something on one front-end or admin page, such as the theme’s options page, or maybe a page with a specific widget, you only need to load your script on that page. No point clogging things up and loading scripts on pages where they’re not being used!
  • it’s perfectly possible to prioritise scripts and styles and nominate whether they load in the header or footer from the comfort and safety of your functions.php. The benefit being that your theme / framework will work with a wider range of other plugins / child themes.
  • ...2 more annotations...
  • get_template_directory_uri()
  • get_stylesheet_directory_uri()
Luciano Ferrer

Rafflecopter - Easily Create Blog Giveaways & Sweepstakes For Free :) - 5 views

  •  
    Rafflecopter makes it simple to set up and launch a giveaway promotion. With Rafflecopter, you can embed an entry form on your site that incentivizes users to perform tasks in exchange for entries into a sweepstakes.
priyanshu mittal

A Free Wordpress Theme - 1 views

A red color Business Blog theme that supports Primary menu's , Primary & Secondary sidebars,Four widgetized area's at the footer region,Custom Post Types and the option panel . It has a perfect...

wordpress theme red

started by priyanshu mittal on 22 Feb 12 no follow-up yet
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.
Rika Y

WP Plugin Update: Genki Announcement 1.1 < Ericulous - 0 views

  • display message without editing theme files (above 1st post or through widget) display different message to different roles/users timer to switch off announcement (only in WP 2.1)
Rika Y

JPF Quotes WordPress Plugin | So Joe… - 0 views

  •  
    画像付きランダム引用ウィジェット
anonymous

kierandelaney.net » SimpleLife - 0 views

  •  
    Adding a lifestream to your wordpress blog.
anonymous

Omit Widget-Columns from Pages - 0 views

shared by anonymous on 24 Mar 10 - Cached
  •  
    My Wordpress inquiry regarding creation of a single-column page that contains relevant posts as well as any inserted text (which I intend to use as a Diigo collaboration pane).
  •  
    This is a personal inquiry on the Wordpress Support forums. If you are interested in an alternative design for the standard Page, check it out.
awqi zar

How to Make an Events Custom Post Type | WordPress Theming - 12 views

  •  
    Since I've originally written this post, at least two calendar plugins have been updated to use custom post types. Calendar Press looks like a really good option. There's also Kino Calender Plugin. If you're just looking for a plug and go solution, I'd recommend trying out on of those.
  •  
    Thanks for the Kino calendar plugin, I've been looking for a good yet simple calendar for a while. Kino could use some more features, but works well and has multi-day visual support in the calendar widget.
« First ‹ Previous 101 - 120 of 122 Next ›
Showing 20 items per page