Skip to main content

Home/ Wordpress/ Group items tagged wp-themes

Rss Feed Group items tagged

Luciano Ferrer

WordPress › WP Auto Columns « WordPress Plugins - 1 views

  •  
    "Wrap block of text with shortcode. It will be split into columns. Automagically. You need to display your articles in magazine or newspaper style. Use this plugin. You don't have to change your theme files or add styles - just use "table" splitter. Features fully automatic splitter; create columns in table or div's; tag-aware; splits long paragraphs and unordered lists; keeps text with headers;"
Luciano Ferrer

WordPress › WP-PageNavi « WordPress Plugins - 0 views

  •  
    "Adds a more advanced paging navigation interface. Want to replace the old ← Older posts | Newer posts → links with some page links? This plugin provides the wp_pagenavi() template tag which generates fancy pagination links. See the installation instructions for using it in your theme."
Luciano Ferrer

joedolson / accessible-ajax-comments - 0 views

  •  
    "Accessible AJAX Comments This is a plug-in derived from the Accessible AJAX comments library built for the WordPress Theme Accessibility Pattern Library (https://github.com/wpaccessibility/a11ythemepatterns/tree/master/comment-form-with-js-aria) Please make pull requests or raise issues in the WP Accessibility pattern library, unless the issues are specific to the plug-in implementation. "
Clay Leben

WordPress Themes, Plugins, Reviews, & Tutorials - WPKube - 0 views

  •  
    Recommended blog for WP
Anna Johansson

WPCandy - WordPress Themes, Plugins, Tips, and Tricks - 6 views

  •  
    quote from site: "WPCandy was created on October 1st, 2007, as a blog on everything about WordPress, from the latest themes and plugins to tutorials and tips. Already on it's 3rd redesign, WPCandy is one of the top sites about WordPress and still kickin' ass."
Alexis Sgavel

20 More WordPress Code Snippets and Hacks - 0 views

  •  
    When coding WordPress themes, especially if you do it regularly, its really useful to have a selection of code snippets in your toolbox to just 'copy-n-paste' as and when the functionality needs. Not just your most commonly used code, but also some snippets that can, when required, extend WP even further.
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."
Luciano Ferrer

Reduce spam on your WordPress website with the help of .htaccess | Only functional Word... - 8 views

  •  
    "RewriteEngine On RewriteCond %{REQUEST_METHOD} POST RewriteCond %{REQUEST_URI} .wp-comments-post\.php* RewriteCond %{HTTP_REFERER} !.*yourdomainname.* [OR] RewriteCond %{HTTP_USER_AGENT} ^$ RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]"
anonymous

The importance of WordPress upgradation - 0 views

  •  
    Our WordPress Upgradation Services help you benefit from new WordPress Features. We offer quick WordPress Version Upgrade including WP Blog/Theme Upgrade.
Peter Nilsson

Peter Nilsson Sees WordPress As A App Framework - 0 views

  •  
    Today, we have Peter Nilsson, the owner of WP Daily Themes, with us. He shares his candid views about the current standing of WordPress within the market.
Luciano Ferrer

Find Out What Your Visitors Think With These 6 Best WordPress Poll Plugins | Elegant Th... - 0 views

  •  
    "Poll & Quiz Tools by OpinionStage WP-Polls YOP Poll Democracy Poll Responsive Poll (premium) TotalPoll Pro (premium) You can't easily run a successful website without knowing what your users care about, what they think about certain issues, and the kind of content that will keep them engaged in the future. Don't be scared, though! There are plenty of ways to figure these things out, such as market research and analytics. Or you could just, you know, go up to your users and ask them: "Hey, how do you feel about this issue?" Enter polls. Not only are polls straightforward and easy to interpret, they also make users feel more invested in your website. Today we will be going over our favorite picks of the best WordPress poll plugins (both free and paid) and their unique features in order to help you narrow down which will earn a spot on your website."
Luciano Ferrer

Question Time: The 9 Best WordPress Quiz Plugins | Elegant Themes Blog - 0 views

  •  
    "WP Pro Quiz (Free) Quiz and Survey Master (Free and Premium) SlickQuiz (Free) mTouch Quiz (Free) FSQM Pro (Premium) Watu (Free and Premium) Viral Quiz Builder (Premium) OpinionStage (Hosted, Free and Premium) Riddle (Hosted, Free and Premium) After getting users to visit your website, you need to make the site "sticky" enough for visitors to stay and engage with your content. Creating quizzes can be a great way to get users hooked. However, a popular quiz takes more than just writing some questions. Site owners need a way to gather responses, score the answers given, and communicate the results. WordPress plugins can greatly simplify the process of creating and managing quizzes by making it easy to create quizzes with multiple question types, establish a system for scoring the responses, and ultimately generating results. By using a plugin, quizzes can be created as needed with little difficulty. This post will help identify the best quiz plugin for you by sharing several free and premium plugins, outlining key features of each, and highlighting the factors to be considered for different scenarios."
Clay Leben

Tailor for WordPress - 1 views

  •  
    Free WP plugin page builder, change layout easily.
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)
Peter Nilsson

WP Daily Themes Weekly WordPress Roundup #35 - 0 views

  •  
    I hope you had a good start of the new year, 2016! Let's take a look at the latest news from the WordPress community. Here is our Weekly WP Roundup #35.
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' =&gt; array( 'name' =&gt; __( 'Products' ), 'singular_name' =&gt; __( 'Product' ) ), 'public' =&gt; true, 'has_archive' =&gt; 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' =&gt; array('slug' =&gt; '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 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:
« First ‹ Previous 121 - 140 of 206 Next › Last »
Showing 20 items per page