Skip to main content

Home/ Wordpress/ Group items tagged views

Rss Feed Group items tagged

Luciano Ferrer

WordPress › Shortcake (Shortcode UI) « WordPress Plugins - 0 views

  •  
    "Shortcake makes using WordPress shortcodes a piece of cake. Used alongside add_shortcode, Shortcake supplies a user-friendly interface for adding a shortcode to a post, and viewing and editing it from within the content editor. Once you've installed the plugin, you'll need to register UI for your shortcodes. For inspiration, check out examples of Shortcake in the wild."
Luciano Ferrer

WordPress › Simple History « WordPress Plugins - 0 views

  •  
    "View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more. Simple History shows recent changes made within WordPress, directly on your dashboard or on a separate page. The plugin works as a log/history/audit log/version history of the most important events that occur in WordPress."
Peter Nilsson

WooReports WordPress Plugin: An Analytical Extension - 1 views

  •  
    WooReports is an analytic WordPress plugin that let you view your customers in a way like never before. It integrates with your WooCommerce online store.
  •  
    Excellent plugin for woo-Commerce. Thank for share. I have also find very useful plugins on http://goo.gl/izUxDP.
hicham hicham

Free Wordpress Themes Blue Black Template - 0 views

  •  
    Wordpress Blue Black Ring Web2.0 Theme Template, Very Gigh Quality Designed Dark Theme for Wordpress 2.0x, come with 2 Columns, Web2.0 Inspiration, Right Sidebar, Black, Stylish Blue, Rounded Corners Theme, Works with latest WordPress release, Browser compatibility has been testing and best viewed with: Opera, Google chrome, Firefox 3x, IE7, Safari for Windows and Safari for Mac, Fixed Width, Ready RSS Button On The Right Sidebar, 125x125 Ready Ads Spots, Photoshop PSD Files Included and Widget Ready, This Theme is suitable For any Kind of Blogging and Neutral Blogging, This work is under Creative Commons Attribution-Share Alike 3.0 License, This means you may use it and make any changes you like, However, credit links must remain on footer for legal use.
Luciano Ferrer

WordPress › WPtouch « WordPress Plugins - 4 views

  •  
    A simple, powerful and elegant mobile theme for your website. WPtouch automatically transforms your WordPress blog into an iPhone application
  •  
    "WPtouch: A simple, powerful and elegant mobile theme for your website. WPtouch automatically transforms your WordPress website into an application-like theme, complete with ajax loading articles and effects when viewed from the most popular mobile web browsing devices like the iPhone, iPod touch, Android mobile devices, Palm Pre/Pixi and BlackBerry OS6 mobile devices."
Jungle Jar

Random Posts In Wordpress Without Plugins (Ghost Post Article 1/2) - 0 views

  •  
    This article is 1 of 2 in an article set I've named "Ghost Posts". In this article I'll show you how to display random posts grabbed from any category of your choosing in Wordpress without the use of plugins. You can also view this same code snippet being used on JungleJar right now.
Alex Sysoef

Banish Low Balling Ads To Earn More With Your Blog | WordPress Web 2.0 Spot-Er - 1 views

  •  
    Making money with your blog is easy and actually almost automated once your blog gets a bit of age and ranking. This is mainly due to the fact that most blogs die a lot sooner than traditional websites and advertisers view them as "more volatile" investment but once you have proven that your blog is here to stay - You Got Yourself Blog Income Potential!
Luciano Ferrer

WordPress › DLG Client Upload « WordPress Plugins - 4 views

  •  
    "Client upload gives your user a special area where they can upload files which you can view in your admin page. The DLG Client Upload Manager is a great plugin for webdesign design and print design companies. It comes in very usefull when you need a client area where they can upload files for each registered member. This gives you a place to keep all your client files and information. This plugin also keeps each client in a seperate folder incase you need to download all the files through ftp."
anonymous

How Are WordPress Plug-ins Helpful? - 0 views

  •  
    Plug-in is small snippets of code allowing you to add extra functionality to your site! Like, if you want to get idea of the statistics of your site, WordPress.com stats plug-in can help, which helps you measure your number of page view matrix and it can also help you know where your traffic is coming from.
siva kumar

Build a Website - How to Build a Website in 3 Steps - 0 views

  •  
    To create a website you need to follow these three steps Choose a domain name. Choose Web hosting. Creating your Website. Let me explain about each Step One by One 1.DOMAIN NAME: First step to choose your domain name. It is a unique name what you are going call your website. You have to register the domain name each year for fee .Example: www.Shayari.ws is your domain name. You also need Web hosting and Website builder. I will show you where to find these in step two 2.Web Hosting: Web hosting is storage where you save all your website files. Once you upload them in your Web Hosting Server, Everyone around the world can view it. Now I will explain you where do I get Web Hosting? You can purchase Web hosting where you register your domain name. I will show you where to register your domain name and buy web hosting. It does with some Web Hosting Companies around the world such as GoDaddy.Com, Hostgator, mocha host and so on….Using a new website hosting Account you can setup a new website from scratch. 3.Creating Your Website: I will explain you where to get them to build your website. Build your website or blog using Word Press. I recommend word press is the best platform to build your website. Most of the new websites are currently using Word Press Application. This is one of the best applications for people who know nothing about making a website. Word press is as simple as clicking a few buttons and finished. If you want to create a blog or website use word press which creates the site design automatically and the functionality is inbuilt as well. Word Press application is free of cost. The actual software (Word Press) that your build your website is supplied by your web hosting company registered and purchased the domain and hosting. We recommended GODADDY for a domain and web hosting so you can build your website
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.
Erik Emanuelli

Bounce Rate: What Is and How to Improve It [8 Tips] - 1 views

  •  
    Bounce rate is the percentage of people who leave your website after viewing only one page. It's an important metric to track because it can tell you a lot about how well your website is performing. In this post, we will discuss bounce rate in-depth and teach you how to improve it on your site!
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.
Clara James

Top WordPress Image Gallery Plugins for 2011 - 1 views

  •  
    Image galleries enable you to conveniently view images on your blog and manipulate them. Here are some really hot ones! NextGen - allows you to create multiple slideshows on your site. Photo Space - adds any image attached to a post or a page to the gallery.
Sue Bride

Free Wordpress Themes, Free Wordpress Templates, View & Download - 1 views

  •  
    Free and Premium Themes
‹ Previous 21 - 40 of 51 Next ›
Showing 20 items per page