
Calendrier - An Updated WordPress Events List Around this time last year, I wrote a post on how to create an Upcoming Events section on your WordPress blog. The events can be displayed as a list of posts, ordered by the date in which they occur (And events that come and go will automatically be taken off the list of course). As several of you found out this January though, that code had an issue in it that meant it stopped working with the new year. In this post, we’re going to fix that (Sorry it’s taken me to now to publish a tutorial with the solution!). How to Add Events The most important thing is that we won’t be making any changes to how events are added. For that reason, we’ll keep adding events by: Adding posts to a category called Events.Specifying the date of the event using a custom field called Date. To get started, go and and add a few test posts to your Events category now. Building Our MySQL Query Instead of a regular WordPress query_posts(), this time we’ll be building a MySQL query. Displaying Our Events
Introduction aux APIs graphiques d’HTML5: SVG & Canvas (1/2) - David Rousset Au programme de cette série d’articles, nous allons découvrir : 1 – les bases de SVG et de Canvas 2 – les scénarios clés d’utilisation de ces 2 jeux d’APIs Ce premier article traitera donc des bases de SVG et de Canvas. Note : vous pouvez tester la plupart des exemples directement au sein de cet article si vous utilisez IE9, Firefox 4.0 ou Chrome. Opera 11 ne supportant pas apparemment le SVG “in-line”, la plupart de mes exemples SVG ne fonctionnent pas. Les bases de SVG Les scènes statiques Commençons donc par la base de la base de SVG. Vous avez un ensemble de primitives pour dessiner (rectangle, cercle, ellipse, etc.) ou alors via des Paths. Si vous êtes développeur Silverlight, SVG vous rappellera furieusement XAML si nous devions faire un parallèle. Regardons un des exemples les plus simples qui soit utilisant la méthode de fragments SVG intégrés dans le code HTML5 (ou SVG in-line). Nous donne le résultat suivant (si votre navigateur supporte SVG) : Ajout de l’interactivité <! <! <! ).
10 Must Have WordPress Plugins Of 2012 Every Blogger Should Know About How can you wow your readers when they visit your blog, so that they never want to leave again? With over 900,000 new blogposts that are freshly published every day, the competition is fierce for each and every author. Yet, making your articles the ones that readers want to come back to check out isn’t so hard. On each and every occasion I would argue that providing amazing content is absolutely key. For this post though, I want to focus on how you can greatly improve the number of shares and awesomeness of your blog, with some of the latest WordPress Plugins. Here are my top 10 picks for you, to increase Social Media sharing of your articles and blog performance: #1 Digg Digg – Powerful and simple social sharing buttons The first plugin I want to introduce is the well known Digg Digg sharing bar, which recently received a major face lift. Digg Digg makes it super easy to add a floating share bar to your blogpost, just like Mashable for example. #3 WP Touch – Make your blog mobile friendly
Best Wordpress Plugins Advertisement WordPress is the most widely used and adaptable content management system out there, but you’re probably going to want some plugins to make it just right for your needs. Here, I’ve collated what I think are the best plugins – both from experience, and community recommendations. Remember though, the more plugins you install, the slower your site will be, so there’s a delicate balancing act between features and performance. Performance and Backup WordPress is great – but can be quite slow when faced with lots of traffic. Note: Many of these plugins should only be configured by advanced users – they could potentially break your site, so take care. W3 Total Cache The Swiss Army knife of caching and performance plugins, W3 handles everything from page caching to Content Delivery Networks and file minification. Better WordPress Minify Make no mistake, W3 Total Cache is a behemoth that can seem like it needs an engineering degree to set up correctly. WP SuperCache CloudFlare Duplicator
Calendrier - WordPress Event Calendar Using Custom Post Types and Verbose Calendar We use WordPress Event Calendar to show the posts created on each day. Also visitors would love to know about the future posts. I have seen some sites which provide the Title of future tutorials so that visitors can stay updated on the topics they like. Likewise we can use WordPress as an event management system as well. Schedules of events are much more important than blog posts. So in this tutorial I am going to use a jQuery plugin called Verbose Calendar in combination with Custom Post Types to create a simple event calendar. What Are We Developing Today Verbose Event Calendar plugin will allow site owners to create events on the admin dashboard and display to users using a calendar. Creating a Custom Post Type for events and adding events.Create a shortcode to display jQuery Verbose Calendar.Add events to the verbose calendar using AJAX. Step 1 Creating the Plugin File Initially we have to create the plugin folder in the /wp-content/plugins directory. Step 5 Create Custom Events Fields
Les 12 meilleurs plugins WordPress Une sélection des meilleurs plugins WordPress gratuits à télécharger pour votre blog. Qualité garantie et certifiés sans failles connues. #1 – Akismet pour lutter efficacement contre le spam Bien que devenu payant pour les blogs à usage lucratif, Akismet n’en reste pas moins un excellent plugin anti-spam. Après de nombreuses années d’utilisation, aucun commentaire indésirable n’a réussi à passer son filtrage qui ne cesse de s’améliorer grâce aux données partagées entre les blogs qui l’utilisent. Une nouveauté récente : prévisualiser l’URL du site présent dans le commentaire, une fonctionnalité indispensable. Akismet Le plugin anti-spam fourni par défaut sur WordPress. Taille : 14,6 Ko • Hits : 2 522 #2 – bbPress 2.0 pour créer des forums légers et intégrés à WordPress Reposant sur les custom post types de WordPress, bbPress 2.0 s’installe comme un plugin et permet de gérer un forum directement dans votre blog. bbPress 2.0 Plugin de gestion de forum sous WordPress par Automattic. WP-PostViews
Ultimate Collection of WordPress Plugins One of the things that separates WordPress from other blogging software out there is the fact that it is open source, and the benefits that go along with being open source. If you aren’t very good at coding, or good with PHP in particular, then the WordPress community has come to the rescue with WordPress plugins, which will allow just about anyone to easily add additional functionality to their blog. With the free WordPress plugins that various authors write and contribute from around the globe, WordPress has gained a lot of flexibility, causing it to be more attractive to potential bloggers. As this site is dedicated to WordPress, I thought it would be a good idea to have a featured post dedicated to the best WordPress plugins available. Premium WordPress Plugins - All Around Premium - WPMU Dev Plugins – WPMU Dev is a premium WordPress plugin resource that has lots of premium plugins such as a great e-commerce install, SEO plugins, and a world-class backup solution. - Advertising -
Calendrier - Entreprise EPI , création de sites internet | Transformer le calendrier wordpress en un agenda Bonjour à tous. Aujourd’hui nous allons voir comment transformer en 10 minutes le calendrier de WordPress en un agenda. Tout d’abord, il faut télécharger le plugin the future is now. Ce petit plugin permet tout simplement de poster un article à une date qui n’est pas encore passée; Ce qui est fort utile pour notre idée que chaque article va être un élément d’un agenda. Deuxième étape Dans general-template.php : trouver la fonction get_calendar() et supprimer la partie en gras. $dayswithposts = $wpdb->get_results(« SELECT DISTINCT DAYOFMONTH(post_date) FROM $wpdb->posts WHERE MONTH(post_date) = ‘$thismonth’ AND YEAR(post_date) = ‘$thisyear’ AND post_type = ‘post’ AND post_status = ‘publish’ AND post_date < ‘ » . current_time(‘mysql’) . ‘\ », ARRAY_N); Si vous ne voulez utiliser le calendrier que pour une catégorie et non tous les articles : ou 11 représente l’id de la catégorie Voilà c’est fini et ça fonctionne ! Si cet article vous a aidé, n’hésitez pas à faire un don.
Developing Your First WordPress Theme: Day 1 of 3 Themes are a huge part of what makes WordPress as popular as it is, and in this three-part series we'll take you through a step-by-step process that results in a completed, functioning WordPress theme. No prior knowledge required, this is the perfect place to start if you're completely new to WordPress! WordPress Themes Welcome to the first instalment in this three part series on how to get started with making themes for WordPress. Of the millions of people that use WordPress, it's likely that a large majority of those users don't know how to produce a website template, let alone create a WordPress theme. It's this ease-of-use aspect of themes that make WordPress the robust blogging platform it is, powering not only personal blogs and diaries, but some of the largest technology and news blogs on the internet today. So we've established that themes are important, but you probably know all of this already. What Makes a Good Theme? Overall Design How many of you just shuddered? Widget Support
Template Tags Languages: English • Español • Français • Italiano • 日本語 • 한국어 • Português do Brasil • Русский • ไทย • Türkçe • 中文(简体) • 中文(繁體) • (Add your language) Template tags are used within your blog's Templates to display information dynamically or otherwise customize your blog, providing the tools to make it as individual and interesting as you are. Below is a list of the general user tags available in WordPress, sorted by function-specific category. For further information on template tags and templates in general, see the following: Stepping Into Template Tags - an introduction to Template Tags. Anatomy of a Template Tag - details of how to put Tags into Template files. Note: If you have an interesting twist on the implementation of a template tag, you're encouraged to add to its documentation for the benefit of other WordPress users. Files Template tags files are stored in the wp-includes directory. Tags General tags wp-includes/general-template.php Author tags wp-includes/author-template.php
Create A Network Languages: বাংলা • English • Français • 日本語 • Português do Brasil • Português • Русский • ไทย • 中文(简体) • Español • (Add your language) As of WordPress 3.0, you have the ability to create a network of sites by using the multisite feature. This article contains instructions for creating a multisite network. A multisite network can be very similar to your own personal version of WordPress.com. A multisite network is a collection of sites that all share the same WordPress installation. NOTE: If you are currently running WordPress MU, you do not need to complete these steps. Step 0: Before You Begin Compared with a typical single WordPress installation a network installation has additional considerations. This guide describes how to install manually WordPress Multisite in your current WordPress installation. Please read Before You Create A Network in full before continuing. Step 1: Prepare Your WordPress Your existing WordPress site will be updated when creating a network. Tools Network Screen
Slider - jQuery & Wordpress - Créer votre slider personnalisé Aujourd’hui nous apprendrons à utiliser jQuery afin de créer un slider. Plusieurs notions de WordPress vous seront utiles, notamment les query_posts et les custom fields ou champs personnalisés. Coté jQuery, tous sera décortiqué dans ce tutoriel. Pourquoi faire un slider soi-même, alors qu’il en existe une pléiade de plugin comprenant cette fonction ? Vous verrez qu’avec un peu de doigté vous pourrez arriver à un résultat plus proche de vos désidératas qu’avec un plugin car il s’agit d’une combinaison de CSS / JavaScript totalement personnalisable. Rappel sur les query_posts Le query_posts est une fonction utilisée juste avant le loop WordPress permettant de trier les résultats de ce dernier. En code, le précédent exemple donnerai ceci : Le wp_reset_query(); » sert à clore la requête pour éviter tout conflit dans le cas d’un template multi-loop. Pour notre slider nous utiliserons cette requête : Rappel sur les custom fields Ces champs peuvent faire l’objet de custom fields.
Créer un thème de A à Z - Tutoriel WordPress CMS - Ressources pour utiliser WordPress comme CMS et sites statiques WordPress, de loin le premier script de blog au monde en nombre d’utilisateurs, a tellement évolué depuis ses débuts qu’il est aujourd’hui extensible à l »infini, ce qui le rend capable de presque tout faire en termes d’applications web. Même si sa vocation première reste le développement facilité de blogs et de sites d’information, certains n’hésitent WordPress, de loin le premier script de blog au monde en nombre d’utilisateurs, a tellement évolué depuis ses débuts qu’il est aujourd’hui extensible à l »infini, ce qui le rend capable de presque tout faire en termes d’applications web. Même si sa vocation première reste le développement facilité de blogs et de sites d’information, certains n’hésitent pas à l’utiliser à d’autres fins, et notamment pour déployer des sites qui n’ont plus rien à voir avec des blogs. Du blog au site statique Un site statique ? Et WordPress alors, comment ça se passe ? J’y viens, j’y viens. WordPress est un CMS comme les autres Alors, comment fait-on ?