Skip to main content

Home/ Wordpress/ Group items tagged example

Rss Feed Group items tagged

Luciano Ferrer

7 Top Plugins for Podcasting with WordPress | Elegant Themes Blog - 1 views

  •  
    "Unless you've been hiding under a (presumably delightfully comfortable) rock for the past few years, you will have noticed the extraordinary rise in the popularity of podcasting (one billion podcast subscriptions was passed way back in 2013). And being the enterprising type, you're ready to wade in and grab the opportunity that podcasting presents with both hands. As a WordPress site owner, you'll be delighted to hear that podcasting and WordPress go hand in hand. To save you the unnecessary hassle and effort that can be involved with integrating podcasts with your WordPress site, we've rounded up seven of the top podcasting plugins out there for you to consider below. By the end of the piece, you're sure to have found a solution to suit your needs. Before we crack on to the list though, let's cover some background on podcasting itself. A Brief Overview of Podcasting Podcasting's history goes back further than blogging itself. Although its roots lie in the 1980s indie radio boom, the modern format become popular in 2004 through platforms such as Odeo. During that time, the iPod was the dominant force in online media consumption. Developers and radio enthusiasts were on the lookout for a way to easily add their programs to the device and Apple's 2005 integration of podcasts in iTunes set the ball rolling in earnest. Since then, podcasts have been created by every conceivable media outlet and organization on earth and opened the door for many individual voices. Some of the most popular podcasts have been entertainment-based. The Ricky Gervais Show, for example, started life as an incredibly popular podcast with roots in traditional radio. Due to its success, the show grew into an HBO series with multiple spinoff shows starring various cast members. Other popular podcasts explore a diverse range of topics with standout examples including This American Life, The Joe Rogan Experience, The Nerdist, and Radiolab. The more technically inclined amongs
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.
madeinbrian

41+ Avada WordPress Theme Examples - 0 views

  •  
    The most creative websites design built with the Avada WordPress theme to get inspiration when creating your own website.
Erik Emanuelli

Bucket Brigade in Copywriting: How-to, Examples, Words List - 0 views

  •  
    The bucket brigade copywriting technique is a magnetic writing skill. Why? Because it hooks the readers. In fact, I'm using it right now as you read this. Now, I know what you're thinking: "I want to learn it too!" So, let's dive in! This guide will show you how to leverage bucket brigades in your copywriting, with examples and an exhaustive word list you can use in your content.
Luciano Ferrer

How to Run a Webinar From Your WordPress Website (in 6 Steps) - 3 views

  •  
    "A webinar can take many forms, such as a meeting, presentation, or workshop. The main difference between running a webinar and simply posting a video is the interactive component the former offers. Attendees typically view webinars in real time, and there is often the option for them to participate by asking and/or answering questions. This type of seminar offers an excellent opportunity to add a personal touch to your platform and engage your customers. For example, Neil Patel uses webinars frequently to reach out to visitors of his traffic growing website. Step #1: Create a Google Account Step #2: Create a New Event in YouTube Live Step #3: Customize Your Webinar Step #4: Embed Your Webinar in Your WordPress Website Step #5: Invite Attendees Step #6: Broadcast Your Webinar"
Vernon Fowler

Function Reference/bloginfo « WordPress Codex - 0 views

  • 'siteurl' - Deprecated since version 2.2. Echo home_url(), or use bloginfo('url'). 'home' - Deprecated since version 2.2. Echo home_url(), or use bloginfo('url').
  • home = http://www.example.com/home (DEPRECATED! use url option instead)
  • Please note that directory URLs are missing trailing slashes.
  • ...1 more annotation...
  • siteurl = http://www.example.com/home (DEPRECATED! use url option instead)
  •  
    Displays information about your site, mostly gathered from the information you supply in your User Profile and General Settings WordPress Administration Screens. It can be used anywhere within a template file. This always prints a result to the browser. If you need the values for use in PHP, use get_bloginfo().
Luciano Ferrer

WordPress › Peter's Login Redirect « WordPress Plugins - 0 views

  •  
    "Redirect users to different locations after logging in and logging out. Define a set of redirect rules for specific users, users with specific roles, users with specific capabilities, and a blanket rule for all other users. Also, set a redirect URL for post-registration. This is all managed in Settings > Login/logout redirects. You can use the syntax [variable]username[/variable] in your URLs so that the system will build a dynamic URL upon each login, replacing that text with the user's username. In addition to username, there is "userslug", "homeurl", "siteurl", "postid-23", "http_referer" and you can also add your own custom URL "variables". See Other Notes / How to Extend for documentation. If you're using a plugin such as Gigya that bypasses the regular WordPress login redirect process (and only allows one fixed redirect URL), set that plugin to redirect to wp-content/plugins/peters-login-redirect/wplogin_redirect_control.php and set the relevant setting to "Yes" at the bottom of the Settings > Login/Logout redirects page in the WordPress admin panel. You can add your own code logic before and between any of the plugin's normal redirect checks if needed. See Other Notes / How to Extend for documentation. Some examples include: redirecting the user based on their IP address; and redirect users to a special page on first login. This plugin also includes a function rul_register that acts the same as the wp_register function you see in templates (typically producing the Register or Site Admin links in the sidebar), except that it will return the custom defined admin address. rul_register takes three parameters: the "before" code (by default ""), the "after" code (by d"
Luciano Ferrer

How to Add Items to the WordPress Toolbar - WPMU DEV - 1 views

  •  
    "In this article, we'll look at how you can add your own custom links to the bar with code so you can quickly access parts of the front and backend of your site with ease. This will be a simple enough task, all we need is one function: add_node(). I recommend taking a look at what the Codex has to say about it, I'll show you the basics using a couple of examples."
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

Style Different Categories in Your WordPress Site Differently Using CSS - Tuts+ Code Tu... - 0 views

  •  
    "In the previous tutorial I showed you how to style the posts on your main blog page according to their category, creating color coding by category. A lot of sites that use this technique also take it further by adding distinct styling to each section of their site, in a way that co-ordinates with the styling on the main blog page or home page. You can just use a simple color scheme or add completely different styling to each section, maybe with a different logo or branding for different parts of your organisation, or even a different layout. An example is the London Times website, which uses a different color for each section of its site. The front page uses these colors in a banner above each post, as shown in the screenshot:"
JR Oakes

40 Useful jQuery Techniques and Tutorials for Great User Interface - 0 views

  •  
    Great collection of Jquery Ui examples to pimp out your WP theme
Carlos Brocca

Before Licensing - CC Wiki - 0 views

  • They do not give you the ability to restrict anything that is otherwise permitted by exceptions or limitations to copyright—including, importantly, fair use or fair dealing—nor do they give you the ability to control anything that is not protected by copyright law, such as facts and ideas.
    • Carlos Brocca
       
      Otherwise = de otro modo, de otra manera
  • Creative Commons licenses attach to the work and authorize everyone who comes in contact with the work to use it consistent with the license. This means that if Bob has a copy of your Creative Commons-licensed work, Bob can give a copy to Carol and Carol will be authorized to use the work consistent with the Creative Commons license. You then have a license agreement separately with both Bob and Carol.
  • One final thing you should understand about Creative Commons licenses is that they are all non-exclusive. This means that you can permit the general public to use your work under a Creative Commons license and then enter into a separate and different non-exclusive license with someone else, for example, in exchange for money.
  • ...3 more annotations...
  • What if I change my mind? This is an extremely important point for you to consider. Creative Commons licenses are non-revocable. This means that you cannot stop someone, who has obtained your work under a Creative Commons license, from using the work according to that license. You can stop offering your work under a Creative Commons license at any time you wish; but this will not affect the rights with any copies of your work already in circulation under a Creative Commons license. So you need to think carefully when choosing a Creative Commons license to make sure that you are happy for people to be using your work consistent with the terms of the license, even if you later stop distributing your work.
  • However, you should also think about exactly which elements of your work you are licensing. For example, in the case of a website, are you licensing just the text and images? Or also the stylesheets and the code that run the site? Similarly, if you make CC-licensed music available for download on your site, does the Creative Commons license apply to both the musical composition and the sound recording as well as any artwork and graphics at your site? And remember, as discussed under “2. Make sure you have the rights” above, you need to make sure you have the rights to each element that you license under a Creative Commons license.
    • Carlos Brocca
       
      Muy importante esto de tener claro mis derechos y a qué le aplico la licencia, textos, imagenes, etc
  • Take a moment to think about exactly what you are intending to license and then frame your metadata and legal notice accordingly, eg. “All images at this site are licensed under a Creative Commons [insert description] 2.5 license.”
Andy Brudtkuhl

10 Useful RSS-Tricks and Hacks For WordPress - 0 views

  •  
    RSS is one of those technologies that are extremely simple yet extremely powerful. Currently, RSS is the de facto standard for blog syndication, and it is used widely in both personal and corporate settings; for example, in blogs. And because a large percentage of these blogs run on WordPress, we'll cover in this post some (hopefully) relatively unknown but useful RSS-related tricks and hacks that will help you use RSS in a more effective way - and without unnecessary and chunky WordPress plug-ins.
Alex Sysoef

Why Your Blog Traffic Sucks - 0 views

  •  
    Ever ask yourself a question - Why I Don't Get Much Traffic From Google? This post is not to make an example out of anyone but rather help the person, who commented on my blog and in process I have discovered the issue. It is also designed to help you to ensure you don't have similar problem as it will cost you dearly in terms of Traffic You Will Never Get!
JR Oakes

Shun the Plugin: 100 WordPress Code Snippets from Across the Net | WordPress, Multisite... - 16 views

  •  
    Great Code examples 
Alexis Sgavel

Multiple custom search forms in WordPress | 456 Berea Street - 1 views

  •  
    There are occasions when you want to fine-tune where, when, and how WordPress outputs search forms. For example you will likely want to change the default HTML used for the form, and you may want to display more than one search form on some pages.
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
Alexis Sgavel

WordPress Self-Hosted Plugin Update API | Jeremy Clark - TechNet.com - 0 views

  •  
    ave a plugin that can't be submitted to the official repository? Many reasons exist but the biggest is that the plugin/support is sold therefore can't be downloaded for free. But why should the end user be punished after all they bought the plugin and updates should be just as seamless as from the official repo. With this script this can be accomplished. Examples and a package of sample code can be downloaded below.
Luciano Ferrer

Template Hierarchy « WordPress Codex - 10 views

  •  
    "WordPress Templates fit together like the pieces of a puzzle to generate the web pages on your WordPress site. Some templates (the header and footer template files for example) are used on all the web pages, while others are used only under specific conditions. "
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
1 - 20 of 41 Next › Last »
Showing 20 items per page