Skip to main content

Home/ Wordpress/ Group items tagged class

Rss Feed Group items tagged

anonymous

WP Post Columns Plugin 2 - 0 views

  • When writing a wordpress post simply use the following shortcodes to create your columns: For example shortcodes you can copy and paste directly into a wordpress post please check the first comment on this post. Additional Info:
  •  
    A plugin from Sam Burdge. A great way to include columnar data in a Wordpress post/page.
anonymous

Widget Logic (A Wordpress Plugin) - 0 views

  • The 'Widget logic' field at work in standard widgets. The widget_content filter and wp_reset_query options are at the foot of the widget admin page. (Both are off by default.)
  •  
    A *great* way to instruct widgets to only appear on certain pages/categories. Fantastic stuff!
Vernon Fowler

Tutorials, Books & Screencasts | WP.Envato - 0 views

  •  
    "Envato is one of the most prolific outlets of tutorials and screencasts for WordPress design and use. The vast majority are free materials, however we also publish premium tutorials and books. You can browse through the links below to find our selection of world class WordPress training content."
Vernon Fowler

Widgetizing Themes « Automattic - 0 views

  •  
    " 'before_widget' => '', 'after_widget' => '',"
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

Using Permalinks « WordPress Codex - 0 views

  • Using %category% with multiple categories on a post When you assign multiple categories to a post, only one can show up in the permalink. This will be the lowest numbered category (see Manage Categories). The post will still be accessible through all the categories as normal.
Vernon Fowler

Child Themes « WordPress Codex - 0 views

  • A child theme resides in its own directory in wp-content/themes. The scheme below shows the location of a child theme along with its parent theme (Twenty Twelve) in a typical WordPress directory structure:
  • This directory can contain as little as a style.css file, and as much as any full-fledged WordPress theme contains: style.css (required) functions.php (optional) Template files (optional) Other files (optional)
  • @import url("../twentytwelve/style.css");
  • ...4 more annotations...
  • Note on the @import rule There must be no other CSS rules above the @import rule. If you put other rules above it, it will be invalidated and the stylesheet of the parent will not be imported.
  • Unlike style.css, the functions.php of a child theme does not override its counterpart from the parent. Instead, it is loaded in addition to the parent’s functions.php. (Specifically, it is loaded right before the parent’s file.)
  • But, when creating child themes, be aware that using add_theme_support('post-formats') will override the formats as defined by the parent theme, not add to it.
  • A child theme can override any parental template by simply using a file with the same name.
Vernon Fowler

Add Odd/Even to Posts | WordPress Snippets - 0 views

  • To add the classes “even” and “odd” to your posts, put the following snippet in your functions.php.
Vernon Fowler

Function Reference/add theme support « WordPress Codex - 0 views

  • HTML5 This feature allows the use of HTML5 markup for the comment forms, search forms and comment lists. add_theme_support( 'html5', array( 'comment-list', 'comment-form', 'search-form' ) );
Vernon Fowler

WordPress › Support » [Plugin: Adminimize] Help with "Your own options" - 2 views

  • Example based on my need: I was hiding Custom Field Template on the Post page, so i went to the bottom of the post options, then added the name in the left text area (Custom Field Template in my case, for your reference so it can be anything...) and the selector for the element in the right (# for ID and . for class - so i entered #cftdiv) Name for option in left -> selector in the right Click "Update Options" Go back down and find your newly created option and select the boxes as needed
anonymous

Talented WordPress Developers team offering world-class WP services to bring closer to ... - 1 views

  •  
    Hire WordPress Developers from us to get brilliant WordPress Services at best prices. Our WordPress Developer is highly trained to complete complex projects!
JR Oakes

Improving the Performance of your WordPress Site: Part 1 - 0 views

  • Optimising CSS & JavaScript With the above informatinon in mind aim to lower the amount of css and javascript files your theme has, for example include your reset.css in your style.css, and for wp-page-navi add it to your style.css too. Some plugins add css or JavaScript to your theme It’s a good idea to filter these files out and add them to your own style.css or a javascript file. Justin Tadlock has written a  useful guide on how to disable scripts and styles belonging to many plugins. http://justintadlock.com/archives/2009/08/06/how-to-disable-scripts-and-styles You can also minimise you css with CSS Drive’s CSS Compressor to lower your style sheets size by that extra bit. It all adds up!
Rika Y

Kerflop » Freebies - 0 views

shared by Rika Y on 20 Apr 07 - Cached
Rika Y

TBeseda » Announcing: v2 Kiwi - 0 views

  • Announcing: v2 Kiwi
Miren Berasategi

HeadSpace2 - 0 views

  • HeadSpace2 is a plugin to manage meta data for your WordPress site. For the unfamiliar, meta data is all the extra information that explains what your content is about, allowing you to fine-tune your site for search engines. HeadSpace2 tries to make the management of this data as easy as possible so you can spend more time creating content.
  •  
    Advanced meta-data manager for SEO titles, tags, descriptions, and more in Urban Giraffe
‹ Previous 21 - 40 of 76 Next › Last »
Showing 20 items per page