Making WordPress.org

Ticket #5537: 10829891.html

File 10829891.html, 348.5 KB (added by ocean90, 4 years ago)
Line 
1<!-- wp:paragraph -->
2<p>Cet article a pour but de proposer les définitions de différents termes exclusifs à WordPress.</p>
3<!-- /wp:paragraph -->
4
5<!-- wp:paragraph -->
6<p>Si vous contribuez à cette documentation, veuillez ne pas ajouter de définitions pour des termes génériques (par exemple&nbsp;: API, PHP, JavaScript...</p>
7<!-- /wp:paragraph -->
8
9<!-- wp:group -->
10<div class="wp-block-group"><div class="wp-block-group__inner-container"><!-- wp:group -->
11<div class="wp-block-group"><div class="wp-block-group__inner-container"><!-- wp:group -->
12<div class="wp-block-group"><div class="wp-block-group__inner-container"><!-- wp:paragraph {"align":"center","backgroundColor":"pale-pink","style":{"typography":{"fontSize":23}}} -->
13<p class="has-text-align-center has-pale-pink-background-color has-background" style="font-size:23px"><strong>Note aux traducteurs</strong></p>
14<!-- /wp:paragraph -->
15
16<!-- wp:paragraph {"backgroundColor":"pale-pink"} -->
17<p class="has-pale-pink-background-color has-background">J’ai mis à votre disposition un <a href="https://www.dropbox.com/s/017gyrjtvtcrrbl/Suivi%20de%20traduction%20de%20la%20page%20Glossary_V6.xlsx?dl=0" data-type="URL" data-id="https://www.dropbox.com/s/017gyrjtvtcrrbl/Suivi%20de%20traduction%20de%20la%20page%20Glossary_V6.xlsx?dl=0">tableau de suivi de la traduction</a> de ce document qui est très long sur mon Dropbox perso. <br>SVP, veuillez le remplir au fur à mesure de vos travaux. Merci d’avance. <br>Les chapitre seront réordonnés en fin de traduction, juste avant la publication. Merci d’avance de votre participation. </p>
18<!-- /wp:paragraph -->
19
20<!-- wp:paragraph {"backgroundColor":"pale-pink"} -->
21<p class="has-pale-pink-background-color has-background"><strong>Code couleur de ce document : </strong><br>Les blocs à fond <span class="has-inline-color has-vivid-cyan-blue-color"><strong>bleu</strong></span> sont déjà relus. Ilsne doivent plus être modifiés. <br>Les blocs à fond <strong><span style="color:#038e5b" class="has-inline-color">vert</span></strong> sont ceux d’origine en langue, <br>les blocs à fond <span class="has-inline-color has-luminous-vivid-amber-color"><strong>jaune</strong></span> sont en cours de traduction. ils sont décolorés quand les liens ont été testés et sont valides. :) <br>Les blocs à fond  <strong><span style="color:#ffe8aa" class="has-inline-color">sable</span></strong> décrivent des éléments obsolètes</p>
22<!-- /wp:paragraph --></div></div>
23<!-- /wp:group --></div></div>
24<!-- /wp:group --></div></div>
25<!-- /wp:group -->
26
27<!-- wp:group -->
28<div class="wp-block-group"><div class="wp-block-group__inner-container"><!-- wp:paragraph {"align":"left","backgroundColor":"pale-pink"} -->
29<p class="has-text-align-left has-pale-pink-background-color has-background">SVP, Veuiller vérifier tous les liens qui pointent vers codex, des pages ont été déplacées vers le support, d’autres pointent vers des chapitres de cet article. :(<br>Merci  </p>
30<!-- /wp:paragraph --></div></div>
31<!-- /wp:group -->
32
33<!-- wp:heading -->
34<h2>Chemin absolu</h2>
35<!-- /wp:heading -->
36
37<!-- wp:paragraph -->
38<p><em>Absolute path</em> en anglais, également connu sous le nom «&nbsp;chemin complet&nbsp;» (<em>full path</em>).</p>
39<!-- /wp:paragraph -->
40
41<!-- wp:paragraph -->
42<p>L’emplacement complet d’un fichier ou d’un répertoire dans un système de fichiers informatique. Un <strong>chemin absolu</strong> commence à la racine du répertoire (ou à la lettre du lecteur) et <span class="has-inline-color has-vivid-red-color">remonte</span> la hiérarchie des répertoires jusqu’à ce que le fichier ou le répertoire soit trouvé. Par contraste, un <a href="#chemin-relatif">chemin relatif</a> ne commence pas au répertoire racine.</p>
43<!-- /wp:paragraph -->
44
45<!-- wp:paragraph -->
46<p>La syntaxe des chemins absolus diffère selon le système d’exploitation. Sur Windows (Microsoft), ils commencent par une lettre de lecteur et utilisent une barre oblique inversée pour séparer les noms de répertoires. Sous MacOS et Linux, les chemins absolus ne comportent pas de lettre de lecteur et utilisent une barre oblique comme séparateur de répertoire.</p>
47<!-- /wp:paragraph -->
48
49<!-- wp:paragraph -->
50<p>Exemples&nbsp;: </p>
51<!-- /wp:paragraph -->
52
53<!-- wp:list -->
54<ul><li>Windows&nbsp;: <code>C:\Users\Matt\www\blog\images\glace.jpg</code></li><li>macOS&nbsp;: <code>/Users/Matt/www/blog/images/<code>glace</code>.jpg</code></li><li>Linux&nbsp;: <code>/home/Matt/www/blog/images/<code>glace</code>.jpg</code></li></ul>
55<!-- /wp:list -->
56
57<!-- wp:paragraph -->
58<p>Pour trouver le chemin absolu du système de fichiers du répertoire contenant une page web, copiez le code ci-dessous dans un nouveau fichier texte, enregistrez le fichier sous le nom <em>path.php</em> (ce qui donne une simple page web PHP), et déplacez ce fichier sur votre <a href="#serveur-web">serveur web</a>. Ensuite, dans votre navigateur web, saisissez l’<a href="#url">URL</a> de ce fichier (par exemple http://www.example.com/path.php).</p>
59<!-- /wp:paragraph -->
60
61<!-- wp:syntaxhighlighter/code {"language":"php","lineNumbers":false,"quickCode":false} -->
62<pre class="wp-block-syntaxhighlighter-code">&lt;?php
63echo getcwd();
64?></pre>
65<!-- /wp:syntaxhighlighter/code -->
66
67<!-- wp:paragraph -->
68<p>À lire aussi&nbsp;: <a href="https://fr.wikipedia.org/wiki/Chemin_d%27acc%C3%A8s">Chemin d’accès (Wikipédia)</a></p>
69<!-- /wp:paragraph -->
70
71<!-- wp:heading -->
72<h2>URI absolue</h2>
73<!-- /wp:heading -->
74
75<!-- wp:paragraph -->
76<p><em>Absolute URI</em> en anglais, également connu sous le nom «&nbsp;URI complet&nbsp;» ou « full URI&nbsp;».</p>
77<!-- /wp:paragraph -->
78
79<!-- wp:paragraph -->
80<p>Une URI qui contient l’emplacement complet d’une ressource (par opposition à une <a href="#uri-relative">URI relative</a>).</p>
81<!-- /wp:paragraph -->
82
83<!-- wp:paragraph -->
84<p>Exemples&nbsp;: </p>
85<!-- /wp:paragraph -->
86
87<!-- wp:list -->
88<ul><li><code>http://www.example.com/blog/images/glace.jpg</code></li><li>f<code>tp://ftp.example.com/users/h/harriet/www/</code></li></ul>
89<!-- /wp:list -->
90
91<!-- wp:heading -->
92<h2>Action</h2>
93<!-- /wp:heading -->
94
95<!-- wp:paragraph -->
96<p>Dans WordPress, une action est une <a href="http://www.w3schools.com/php/php_functions.asp">fonction PHP</a> qui est exécutée à un endroit précis du cœur de WordPress.</p>
97<!-- /wp:paragraph -->
98
99<!-- wp:paragraph -->
100<p>Les développeurs et les développeuses peuvent créer des actions personnalisées en utilisation l’<a href="http://codex.wordpress.org/Function_Reference/add_action">API des actions</a>, pour ajouter ou retirer du code d’une <a href="https://codex.wordpress.org/Plugin_API/Action_Reference">action existante</a> en spécifiant un crochet (<em>hook</em>) existant. Ce processus est appelé le «&nbsp;<a href="#crochet" data-type="internal" data-id="#crochet">crochetage</a>&nbsp;».</p>
101<!-- /wp:paragraph -->
102
103<!-- wp:paragraph -->
104<p>Par exemple&nbsp;: si vous souhaitez <strong>ajouter</strong> du code dans le pied de page de votre thème, vous pouvez le faire en créant une nouvelle fonction, et en l’accrochant à l’action <a href="https://developer.wordpress.org/reference/hooks/wp_footer/">wp_footer</a> (en anglais).</p>
105<!-- /wp:paragraph -->
106
107<!-- wp:paragraph -->
108<p>Les actions diffèrent des <a href="#filtre" data-type="internal" data-id="#filtre">filtres</a> car elles permettent d’<strong>ajouter</strong> ou de <strong>supprimer</strong> du code d’une action existante, alors que les filtres permettent de <strong>remplacer</strong> des données spécifiques (comme une variable) située dans une action existante.</p>
109<!-- /wp:paragraph -->
110
111<!-- wp:list -->
112<ul><li>Voir aussi&nbsp;: <a href="#filtre" data-type="internal" data-id="#filtre">Filtre</a>, <a href="#crochet" data-type="internal" data-id="#crochet">Crochet</a>, <a href="#confusion-terminologique" data-type="internal" data-id="#confusion-terminologique">Confusion terminologique</a></li><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Plugin_API#Actions">Actions</a>, <a href="https://codex.wordpress.org/Plugin_API/Action_Reference">Action Reference</a>, <a href="https://codex.wordpress.org/Function_Reference/add_action">add_action()</a> (en anglais)</li><li>Message du forum&nbsp;: <a href="http://wordpress.org/support/topic/fliters-vs-actions-from-a-newbe">Filtres vs Actions, Discussion et explications</a> (en anglais)</li></ul>
113<!-- /wp:list -->
114
115<!-- wp:heading -->
116<h2>Barre d’administration</h2>
117<!-- /wp:heading -->
118
119<!-- wp:paragraph -->
120<p>Une zone de l’écran juste au-dessus de votre site qui vous donne un accès rapide à des fonctionnalités telles que l’ajout d’un nouveau message ou la modification de votre profil. Elle n’est visible que si vous êtes connecté·e.</p>
121<!-- /wp:paragraph -->
122
123<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
124<p class="has-pale-cyan-blue-background-color has-background">The admin bar concept was added to WordPress in <a href="https://codex.wordpress.org/Version_3.1">Version 3.1</a> and was replaced by the <a href="https://codex.wordpress.org/Toolbar">Toolbar</a> in WordPress <a href="https://codex.wordpress.org/Version_3.3">Version 3.3</a>.  To turn it on (or off), open the Dashboard and navigate to <a href="/support/article/administration-screens/">Administration</a> &gt; <a href="/support/article/administration-screens/#your-profile">Users</a> &gt; <a href="/support/article/users-your-profile-screen/">Your Profile</a>.</p>
125<!-- /wp:paragraph -->
126
127<!-- wp:paragraph -->
128<p>Le concept de la barre d’administration a été ajouté à WordPress dans la <a href="https://codex.wordpress.org/Version_3.1" data-type="URL" data-id="https://codex.wordpress.org/Version_3.1">version 3.1</a> et a été remplacé par la <a href="/support/article/toolbar/" data-type="URL" data-id="/support/article/toolbar/">Barre d’outils</a> dans la <a href="https://codex.wordpress.org/Version_3.3" data-type="URL" data-id="https://codex.wordpress.org/Version_3.3">version 3.3</a> de WordPress. Pour l’activer (ou la désactiver), ouvrez le <a href="#tableau-de-bord" data-type="internal" data-id="#tableau-de-bord">Tableau de bord</a> et accédez à <a href="/support/article/administration-screens/">Administration</a> &gt; <a href="/support/article/administration-screens/#your-profile">Utilisateurs</a> &gt; <a href="/support/article/users-your-profile-screen/">Votre profil</a>.</p>
129<!-- /wp:paragraph -->
130
131<!-- wp:list -->
132<ul><li>Article en relation&nbsp;: <a href="/support/article/toolbar/" data-type="URL" data-id="/support/article/toolbar/">Barre d’outils</a></li><li>Voir aussi&nbsp;: <a href="/support/article/users-your-profile-screen/">Votre écran de profil</a></li></ul>
133<!-- /wp:list -->
134
135<!-- wp:heading -->
136<h2>Ajax</h2>
137<!-- /wp:heading -->
138
139<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
140<p class="has-pale-cyan-blue-background-color has-background"><strong>Ajax</strong>&nbsp;is a technique that web pages use to have the server perform certain processing without reloading the web page. For example, when you approve a comment in a WordPress blog, WordPress uses Ajax to change the comment's status, and you see the change without having to reload the Comments screen.</p>
141<!-- /wp:paragraph -->
142
143<!-- wp:paragraph -->
144<p><strong>Ajax </strong>est une technique que les pages web utilisent pour que le serveur effectue certains traitements sans recharger la page. Par exemple, lorsque vous approuvez un commentaire dans un blog WordPress, WordPress utilise Ajax pour modifier l’état du commentaire, et vous voyez le changement sans avoir à recharger l’écran Commentaires.</p>
145<!-- /wp:paragraph -->
146
147<!-- wp:list -->
148<ul><li>Article en relation&nbsp;: <a href="https://codex.wordpress.org/AJAX">AJAX</a> (en anglais)</li><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Ajax#Informatique" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Ajax#Informatique">AJAX</a> (Wikipedia)</li></ul>
149<!-- /wp:list -->
150
151<!-- wp:heading -->
152<h2>Apache</h2>
153<!-- /wp:heading -->
154
155<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
156<p class="has-pale-cyan-blue-background-color has-background"><strong>Apache</strong> is short for <strong><a href="http://httpd.apache.org/">Apache HTTP Server Project</a></strong>, a robust, commercial-grade, featureful, and freely-available open source HTTP <a href="#web-server">Web server</a> software produced by the <a href="http://www.apache.org/">Apache Software Foundation</a>. It is the most commonly used web server on the internet, and is available on many platforms, including Windows, <a href="#unix">Unix</a>/<a href="#linux">Linux</a>, and <a href="#mac-os-x">Mac OS X</a>. Apache serves as a great foundation for publishing WordPress-powered sites.</p>
157<!-- /wp:paragraph -->
158
159<!-- wp:paragraph -->
160<p><strong>Apache</strong> est l’abréviation de <strong><a href="http://httpd.apache.org/">Apache HTTP Server Project</a></strong>, un logiciel de  <a href="#serveur-web" data-type="internal" data-id="#serveur-web">serveur web</a> HTTP open source robuste, de qualité commerciale, fonctionnel et disponible gratuitement, produit par <a href="http://www.apache.org/">Apache Software Foundation</a>. Il s’agit du serveur web le plus utilisé sur internet et est disponible sur de nombreuses plateformes, notamment Windows, <a href="#unix" data-type="internal" data-id="#unix">Unix</a>/<a href="#linux" data-type="internal" data-id="#linux">Linux</a>, et <a href="#mac-os-x" data-type="internal" data-id="#mac-os-x">Mac OS X</a>. Apache constitue une excellente base pour la publication de sites alimentés par WordPress.</p>
161<!-- /wp:paragraph -->
162
163<!-- wp:heading -->
164<h2>API</h2>
165<!-- /wp:heading -->
166
167<!-- wp:paragraph -->
168<p>Veuillez consulter la page <a href="https://fr.wikipedia.org/wiki/Interface_de_programmation" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Interface_de_programmation">Interface de programmation (Wikipédia)</a> pour avoir une définition.</p>
169<!-- /wp:paragraph -->
170
171<!-- wp:heading -->
172<h2>Tableau</h2>
173<!-- /wp:heading -->
174
175<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
176<p class="has-pale-cyan-blue-background-color has-background">An <strong>array</strong> is one of the basic data structures used in computer programming.  An <em>array</em> contains a list (or <em>vector</em>) of items such as numeric or string values.  <em>Arrays</em> allow programmers to randomly access data.  Data can be stored in either <em>one-dimensional</em> or <em>multi-dimensional arrays</em>.
177</p>
178<!-- /wp:paragraph -->
179
180<!-- wp:paragraph -->
181<p>Un <strong>tableau</strong> (<em><strong>array</strong></em> en anglais) est l’une des structures de données de base utilisées dans la programmation informatique. Un <em>tableau</em> contient une liste (ou <em>un vecteur</em>) d’éléments tels que des valeurs numériques ou de chaîne. Les <em>tableaux</em> permettent aux programmeurs d’accéder de manière aléatoire aux données. Les données peuvent être stockées dans des tableaux <em>unidimensionnels</em> ou <em>multidimensionnels</em>.</p>
182<!-- /wp:paragraph -->
183
184<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
185<p class="has-pale-cyan-blue-background-color has-background">A one-dimension array seven (7) elements would be:
186</p>
187<!-- /wp:paragraph -->
188
189<!-- wp:paragraph -->
190<p>Un tableau d’une dimension de sept (7) éléments serait&nbsp;: </p>
191<!-- /wp:paragraph -->
192
193<!-- wp:table -->
194<figure class="wp-block-table"><table><tbody><tr><th>105</th><th>200</th><th>54</th><th>53</th><th>102</th><th>13</th><th>405
195</th></tr></tbody></table></figure>
196<!-- /wp:table -->
197
198<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
199<p class="has-pale-cyan-blue-background-color has-background">The <a href="https://codex.wordpress.org/Template_Tags">Template Tag</a> <a href="https://codex.wordpress.org/Template_Tags/wp_list_categories">wp_list_categories()</a> uses a one-dimensional array for the 'exclude' parameter.
200</p>
201<!-- /wp:paragraph -->
202
203<!-- wp:paragraph -->
204<p>Le <a href="#marqueur-de-mod%c3%a8le" data-type="internal" data-id="#marqueur-de-mod%c3%a8le">marqueur de modèle</a>  «&nbsp;<a href="https://codex.wordpress.org/Template_Tags/wp_list_categories">wp_list_categories()</a>&nbsp;» utilise un tableau unidimensionnel pour le paramètre «&nbsp;exclude&nbsp;».</p>
205<!-- /wp:paragraph -->
206
207<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
208<p class="has-pale-cyan-blue-background-color has-background">An example of two-dimensional array, 7 by 3 elements in size, would be:
209</p>
210<!-- /wp:paragraph -->
211
212<!-- wp:paragraph -->
213<p>Un exemple de tableau à deux dimensions, de 7 éléments sur 3, serait&nbsp;: </p>
214<!-- /wp:paragraph -->
215
216<!-- wp:table -->
217<figure class="wp-block-table"><table><tbody><tr><th>105</th><th>200</th><th>54</th><th>53</th><th>102</th><th>13</th><th>405
218</th></tr><tr><th>15</th><th>210</th><th>14</th><th>513</th><th>2</th><th>2313</th><th>4512
219</th></tr><tr><th>501</th><th>500</th><th>499</th><th>488</th><th>552</th><th>75</th><th>1952
220</th></tr></tbody></table></figure>
221<!-- /wp:table -->
222
223<!-- wp:list -->
224<ul><li>Liens externes&nbsp;: <a href="http://en.wikipedia.org/wiki/Array_programming">Array Programming at Wikipedia</a> (en anglais), <a href="http://encyclopedia.thefreedictionary.com/array">Array at freedictionary.com</a> (en anglais).</li></ul>
225<!-- /wp:list -->
226
227<!-- wp:heading -->
228<h2>ASCII</h2>
229<!-- /wp:heading -->
230
231<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
232<p class="has-pale-cyan-blue-background-color has-background"><strong>ASCII</strong> (pronounced as "ask ee") is a standard but limited <a href="#character-set">character set</a> containing only English letters, numbers, a few common symbols, and common English punctuation marks. WordPress <a href="#content">content</a> is not restricted to ASCII, but can include any <a href="#unicode">Unicode</a> characters.</p>
233<!-- /wp:paragraph -->
234
235<!-- wp:paragraph -->
236<p><strong>ASCII</strong> (prononcez «&nbsp;ass ki&nbsp;») est un <a href="#jeu-de-caract%c3%a8res" data-type="internal">jeu de caractères</a> standard mais limité contenant uniquement des lettres anglaises, des chiffres, quelques symboles courants et des signes de ponctuation anglais courants. Le <a href="#contenu" data-type="internal" data-id="#contenu">contenu</a> WordPress n’est pas limité à ASCII, mais peut inclure tous les caractères <a href="#unicode" data-type="internal" data-id="#unicode">Unicode</a>.</p>
237<!-- /wp:paragraph -->
238
239<!-- wp:paragraph -->
240<p>ASCII est l’acronyme de «&nbsp;<strong>A</strong>merican <strong>S</strong>tandard <strong>C</strong>ode for <strong>I</strong>nformation <strong>I</strong>nterchange&nbsp;». </p>
241<!-- /wp:paragraph -->
242
243<!-- wp:list -->
244<ul><li>Lien externe&nbsp;: <a href="http://fr.wikipedia.org/wiki/ASCII" data-type="URL" data-id="http://fr.wikipedia.org/wiki/ASCII">ASCII</a> (Wikipedia FR avec table de jeu de caractères)</li></ul>
245<!-- /wp:list -->
246
247<!-- wp:heading -->
248<h2>Atom</h2>
249<!-- /wp:heading -->
250
251<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
252<p class="has-pale-cyan-blue-background-color has-background">A format for syndicating content on news-like sites, viewable by Atom-aware programs called news readers or aggregators.
253</p>
254<!-- /wp:paragraph -->
255
256<!-- wp:paragraph -->
257<p>Format de syndication de contenu sur des sites de type actualités, visible par des programmes compatibles Atom, appelés lecteurs ou agrégateurs d’actualités.</p>
258<!-- /wp:paragraph -->
259
260<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
261<ul class="has-pale-cyan-blue-background-color has-background"><li> See also&nbsp;: <a href="#news-reader">News reader</a>, <a href="#rss">RSS</a>, <a href="#rdf">RDF</a></li><li> External links: <a href="http://en.wikipedia.org/wiki/Atom_(standard)">Atom (standard) at Wikipedia</a></li></ul>
262<!-- /wp:list -->
263
264<!-- wp:list -->
265<ul><li>Voir aussi&nbsp;: <a href="#lecteur-d%e2%80%99actualit%c3%a9s" data-type="internal" data-id="#lecteur-d%e2%80%99actualit%c3%a9s">Lecteur d’actualités</a>, <a href="#rss">RSS</a>, <a href="#rdf">RDF</a></li><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Atom_Syndication_Format" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Atom_Syndication_Format">Atom sur Wikipedia</a> </li></ul>
266<!-- /wp:list -->
267
268<!-- wp:heading -->
269<h2>Sauvegarde automatique</h2>
270<!-- /wp:heading -->
271
272<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
273<p class="has-pale-cyan-blue-background-color has-background">When you are writing or editing your posts and pages, the changes you  make are automatically saved every 2 minutes. <s>In the lower right corner  of the editor, you’ll see a notification of when the entry was last  saved to the database</s>. Autosaves are automatically enabled for all posts and pages. There is  only one autosave for each post/page. Each new autosave overwrites the  previous autosave in the database. </p>
274<!-- /wp:paragraph -->
275
276<!-- wp:paragraph -->
277<p>Lorsque vous rédigez ou modifiez vos articles et pages, les modifications que vous apportez sont automatiquement enregistrées toutes les 2 minutes.  Les sauvegardes automatiques sont automatiquement activées pour toutes les publications. Il n’y a qu’une seule sauvegarde automatique pour chaque publication. Chaque nouvelle sauvegarde automatique remplace la sauvegarde automatique précédente dans la base de données.</p>
278<!-- /wp:paragraph -->
279
280<!-- wp:list -->
281<ul><li>Article en relation : <a href="/support/article/revisions/" data-type="URL" data-id="/support/article/revisions/">Les révisions</a></li><li>Lien externe : <a href="http://en.support.wordpress.com/autosave/">WordPress.com Support - Autosave</a> (en anglais)</li></ul>
282<!-- /wp:list -->
283
284<!-- wp:heading -->
285<h2>Avatar</h2>
286<!-- /wp:heading -->
287
288<!-- wp:paragraph -->
289<p>Un <strong>avatar</strong> est une image graphique ou une image qui représente un utilisateur. </p>
290<!-- /wp:paragraph -->
291
292<!-- wp:list -->
293<ul><li>Voir aussi&nbsp;: <a href="#gravatar">Gravatar</a></li><li>Article en relation&nbsp;: <a href="/support/article/how-to-use-gravatars/">Comment utiliser les Gravatars</a></li><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Avatar" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Avatar">Avatar (informatique) sur Wikipedia</a></li></ul>
294<!-- /wp:list -->
295
296<!-- wp:heading -->
297<h2>Interface d’administration</h2>
298<!-- /wp:heading -->
299
300<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
301<p class="has-pale-cyan-blue-background-color has-background">The back end is the area that authorized users can sign into to add,
302remove and modify content on the website. This may also be referred to
303as “WordPress”, "admin" or “the administration area”.
304</p>
305<!-- /wp:paragraph -->
306
307<!-- wp:paragraph -->
308<p>L’interface d’administration est la zone à laquelle les utilisateurs autorisés peuvent se connecter pour ajouter, supprimer et modifier du contenu sur le site web. Cela peut également être appelé «&nbsp;WordPress&nbsp;», «&nbsp;l’admin&nbsp;» ou «&nbsp;la zone d’administration&nbsp;». </p>
309<!-- /wp:paragraph -->
310
311<!-- wp:heading -->
312<h2>Binaires</h2>
313<!-- /wp:heading -->
314
315<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
316<p class="has-pale-cyan-blue-background-color has-background"><strong>Binaries</strong> refer to compiled computer programs, or executables. Many <a href="http://en.wikipedia.org/wiki/Open_source">open source</a> projects, which can be re-compiled from <a href="http://en.wikipedia.org/wiki/Source_code">source code</a>, offer pre-compiled binaries for the most popular platforms and operating systems.
317</p>
318<!-- /wp:paragraph -->
319
320<!-- wp:paragraph -->
321<p>Les <strong>binaires</strong> font référence à des programmes informatiques compilés ou à des exécutables. De nombreux projets <a href="http://fr.wikipedia.org/wiki/Open_source" data-type="URL" data-id="http://fr.wikipedia.org/wiki/Open_source">open source</a>, qui peuvent être recompilés à partir du <a href="https://fr.wikipedia.org/wiki/Code_source" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Code_source">code source</a>, proposent des binaires précompilés pour les plateformes et les systèmes d’exploitation les plus populaires. </p>
322<!-- /wp:paragraph -->
323
324<!-- wp:heading -->
325<h2>Blog</h2>
326<!-- /wp:heading -->
327
328<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
329<p class="has-pale-cyan-blue-background-color has-background">A <strong>blog</strong>, or <strong>weblog</strong>, is an online journal, diary, or serial published by a person or group of people.
330</p>
331<!-- /wp:paragraph -->
332
333<!-- wp:paragraph -->
334<p>Un <strong>blog</strong>, ou <strong>weblog</strong>, est un journal en ligne, un journal d’actualités ou une série d’articles publiée par une personne ou un groupe de personnes.</p>
335<!-- /wp:paragraph -->
336
337<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
338<p class="has-pale-cyan-blue-background-color has-background">Blogs are typically used by individuals or peer groups, but are
339occasionally used by companies or organizations as well. In the
340corporate arena, the only adopters of the blog format so far have tended
341 to be design firms, web media companies, and other "bleeding edge" tech
342 firms.
343</p>
344<!-- /wp:paragraph -->
345
346<!-- wp:paragraph -->
347<p>Les blogs sont généralement utilisés par des individus ou des groupes de partage, mais sont également parfois utilisés par des entreprises ou des organisations. Dans le domaine des entreprises, les seuls utilisateurs du format de blog à ce jour ont tendance à être des entreprises de design, des sociétés de médias web et d’autres entreprises de technologie de pointe. </p>
348<!-- /wp:paragraph -->
349
350<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
351<p class="has-pale-cyan-blue-background-color has-background">Blogs often contain public as well as private content. Depending on the functionality of the <a href="#content-management-system">CMS</a>  software that is used, some authors may restrict access — through the  use of accounts or passwords — to content that is too personal to be  published publicly. </p>
352<!-- /wp:paragraph -->
353
354<!-- wp:paragraph -->
355<p>Les blogs contiennent souvent du contenu public et privé. En fonction de la fonctionnalité du logiciel <a href="#cms" data-type="internal" data-id="#cms">CMS</a> utilisé, certains auteurs peuvent restreindre l’accès - via l’utilisation de comptes ou de mots de passe - à un contenu trop personnel pour être publié publiquement.</p>
356<!-- /wp:paragraph -->
357
358<!-- wp:heading -->
359<h2>Bloguer</h2>
360<!-- /wp:heading -->
361
362<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
363<p class="has-pale-cyan-blue-background-color has-background"><strong>Blogging</strong> is the act of writing in one's blog. To <em>blog</em> something is to write about something in one's blog. This sometimes involves <a href="http://en.wikipedia.org/wiki/Hyperlink">linking</a> to something the author finds interesting on the internet.
364</p>
365<!-- /wp:paragraph -->
366
367<!-- wp:paragraph -->
368<p><strong>Bloguer</strong> est l’acte d’écrire dans son blog. Bloguer quelque chose, c’est écrire sur quelque chose dans son blog. Cela implique parfois <a href="https://fr.wikipedia.org/wiki/Hyperlien" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Hyperlien">un lien</a> vers quelque chose que l’auteur trouve intéressant sur internet.</p>
369<!-- /wp:paragraph -->
370
371<!-- wp:list -->
372<ul><li>Voir aussi&nbsp;: <a href="#blogosph%c3%a8re">Blogosphère</a>, <a href="#blogroll">Blogroll</a></li></ul>
373<!-- /wp:list -->
374
375<!-- wp:heading -->
376<h2>Blogosphère</h2>
377<!-- /wp:heading -->
378
379<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
380<p class="has-pale-cyan-blue-background-color has-background">The <strong>blogosphere</strong> is the subset of internet web sites which are, or relate to, <a href="#blog">blogs</a>. </p>
381<!-- /wp:paragraph -->
382
383<!-- wp:paragraph -->
384<p>La <strong>blogosphère</strong> est le sous-ensemble de sites web qui sont des <a href="#blog" data-type="internal" data-id="#blog">blogs</a> ou qui s’y rapportent.</p>
385<!-- /wp:paragraph -->
386
387<!-- wp:list -->
388<ul><li>Voir aussi&nbsp;: <a href="#blog">Blog</a>, <a href="#blogroll">Blogroll</a></li></ul>
389<!-- /wp:list -->
390
391<!-- wp:heading -->
392<h2>Blogroll</h2>
393<!-- /wp:heading -->
394
395<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
396<p class="has-light-green-cyan-background-color has-background">A <strong>blogroll</strong> is a list of links to various blogs or news sites. Often a blogroll is "rolled" by a service which tracks updates (using <a href="#feed">feeds</a>)  to each site in the list, and provides the list in a form which  aggregates update information. The default blogroll (aka links) included  in WordPress was removed in version 3.5. </p>
397<!-- /wp:paragraph -->
398
399<!-- wp:paragraph -->
400<p>Un <strong>blogroll</strong> est une liste de liens vers divers blogs ou sites d’actualités. Souvent, un blogroll est «&nbsp;roulé&nbsp;» par un service qui suit les mises à jour (à l’aide de <a href="#flux" data-type="internal" data-id="#flux">flux</a>) vers chaque site de la liste, et fournit la liste sous une forme qui regroupe les informations de mise à jour. Le blogroll par défaut (c’est-à-dire <strong><em>Liens</em></strong>) inclus dans WordPress a été supprimé dans la version 3.5.</p>
401<!-- /wp:paragraph -->
402
403<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
404<ul class="has-pale-cyan-blue-background-color has-background"><li> See also&nbsp;: <a href="#blog">Blog</a>, <a href="#blogosphere">Blogosphere</a>, <a href="#feed">Feed</a>, <a href="#news-reader">News reader</a></li><li> External links: <a href="http://en.wikipedia.org/wiki/News_aggregator">News aggregator at Wikipedia</a></li></ul>
405<!-- /wp:list -->
406
407<!-- wp:list -->
408<ul><li>Voir aussi&nbsp;: <a href="#blog">Blog</a>, <a href="#blogosph%c3%a8re">Blogosphère</a>, <a href="#flux" data-type="internal" data-id="#flux">Flux</a>, <a href="#lecteur-d%e2%80%99actualit%c3%a9s" data-type="internal">Lecteur d’actualités</a></li><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Agr%C3%A9gateur#Dans_le_domaine_informatique">Agrégateur de nouvelles sur Wikipedia</a></li></ul>
409<!-- /wp:list -->
410
411<!-- wp:heading -->
412<h2>Marque-page scripté</h2>
413<!-- /wp:heading -->
414
415<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
416<p class="has-pale-cyan-blue-background-color has-background">A <strong>bookmarklet</strong> (or <strong>favelet</strong>) is a "faux" bookmark containing scripting code, usually written in <a href="https://codex.wordpress.org/Glossary#javascript">JavaScript</a>, that allows the user to perform a function. </p>
417<!-- /wp:paragraph -->
418
419<!-- wp:paragraph -->
420<p>Un marque-page scripté (ou <em>bookmarklet </em>ou encore<em> favelet</em>) est un «&nbsp;faux&nbsp;» signet contenant du code de script, généralement écrit en <a href="#javascript" data-type="internal" data-id="#javascript">JavaScript</a>, qui permet à l’utilisateur d’exécuter une fonction.</p>
421<!-- /wp:paragraph -->
422
423<!-- wp:paragraph -->
424<p>Exemples&nbsp;: </p>
425<!-- /wp:paragraph -->
426
427<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
428<ul class="has-pale-cyan-blue-background-color has-background"><li> The <a href="http://delicious.com/help/bookmarklets">delicious.com bookmarklets</a> allow a user to quickly post a link to his/her delicious.com bookmarks list.</li><li> <a href="http://tantek.com/favelets/">Tantek's favelets</a></li></ul>
429<!-- /wp:list -->
430
431<!-- wp:list -->
432<ul><li>Les <a href="https://delicious.com/help/bookmarklets" data-type="URL">bookmarklets de delicious.com</a><strong> -- lien HS --</strong> permettent à un utilisateur de publier rapidement un lien vers sa liste de signets de delicious.com.</li><li><a href="http://tantek.com/favelets/">Les favelets de Tantek</a></li></ul>
433<!-- /wp:list -->
434
435<!-- wp:heading -->
436<h2>Booléen</h2>
437<!-- /wp:heading -->
438
439<!-- wp:paragraph -->
440<p>Une variable ou une expression qui prend la valeur TRUE (vrai) ou FALSE (faux.).</p>
441<!-- /wp:paragraph -->
442
443<!-- wp:list -->
444<ul><li>Lien&nbsp;externe : <a href="https://www.php.net/manual/fr/language.types.boolean.php" data-type="URL" data-id="https://www.php.net/manual/fr/language.types.boolean.php">Manuel PHP type de données</a></li></ul>
445<!-- /wp:list -->
446
447<!-- wp:heading -->
448<h2>Catégorie</h2>
449<!-- /wp:heading -->
450
451<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
452<p class="has-pale-cyan-blue-background-color has-background">Each <a href="https://codex.wordpress.org/Glossary#Post">post</a> in WordPress can be filed under one or more <strong>categories</strong>.  Thoughtful categorization allows posts to be grouped with others of similar content and aids in the navigation of a site.
453</p>
454<!-- /wp:paragraph -->
455
456<!-- wp:paragraph -->
457<p>Chaque <a href="#article">article</a> dans WordPress peut être classé dans une ou plusieurs <strong>catégories</strong>. Une catégorisation réfléchie permet de regrouper les publications avec d’autres de contenu similaire et facilite la navigation sur un site.</p>
458<!-- /wp:paragraph -->
459
460<!-- wp:paragraph {"style":{"color":{"background":"#f7e1bd"}}} -->
461<p class="has-background" style="background-color:#f7e1bd"><s>Please note that a <strong>post</strong> category should not be confused with a <a href="https://codex.wordpress.org/Administration_Panels#Link_Categories"><strong>link</strong> category</a>, which is used to classify and manage <a href="https://codex.wordpress.org/Administration_Panels#Links_-_Putting_the_Inter_in_the_Internet">links</a>. <br><strong><span class="has-inline-color has-vivid-red-color">Rien à propos des catégories de liens dans cet article</span></strong></s></p>
462<!-- /wp:paragraph -->
463
464<!-- wp:paragraph {"style":{"color":{"background":"#f7e1bd"}}} -->
465<p class="has-background" style="background-color:#f7e1bd"><s>Veuillez noter qu'une catégorie de publication ne doit pas être confondue avec une catégorie de liens, qui est utilisée pour classer et gérer les <a href="/support/article/administration-screens/" data-type="URL" data-id="/support/article/administration-screens/">liens</a>. </s> <strong>-- Obsolète --</strong></p>
466<!-- /wp:paragraph -->
467
468<!-- wp:heading -->
469<h2>Permissions</h2>
470<!-- /wp:heading -->
471
472<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
473<p class="has-pale-cyan-blue-background-color has-background">A <strong>capability</strong> is permission to perform one or more types of
474task. Each user of a WordPress site might have some permissions but not
475others, depending on their <a href="https://codex.wordpress.org/Glossary#Role">role</a>.
476 For example, users who have the Author role usually have permission to
477edit their own posts (the "edit_posts" capability), but not permission
478to edit other users' posts (the "edit_others_posts" capability).
479WordPress comes with six roles and over fifty capabilities in its
480role-based access system. Plugins can modify the system.
481</p>
482<!-- /wp:paragraph -->
483
484<!-- wp:paragraph -->
485<p>Une <strong>permission </strong>correspond à l’autorisation d’effectuer un ou plusieurs types de tâches. Chaque utilisateur d’un site WordPress peut disposer de certaines autorisations mais pas d’autres, en fonction de son <a href="#r%c3%b4le" data-type="internal">rôle</a> (<a href="https://codex.wordpress.org/Glossary#Role">role</a> en anglais). Par exemple, les utilisateurs qui ont le rôle Auteur ont généralement le droit de modifier leurs propres messages (soit la permission «&nbsp;edit_posts&nbsp;»), mais pas le droit de modifier les messages des autres utilisateurs (soit la permission «&nbsp;edit_others_posts&nbsp;»). WordPress est livré avec six rôles et plus de cinquante permissions dans son système d’accès basé sur les rôles. Les extensions peuvent modifier le système.</p>
486<!-- /wp:paragraph -->
487
488<!-- wp:paragraph {"backgroundColor":"pale-pink"} -->
489<p class="has-pale-pink-background-color has-background"><strong>note du traducteur</strong> : j’ai ajouté un lien interne vers rôle qui apportera bien plus au lecteur francophone qu’un lien vers la page anglaise originale.</p>
490<!-- /wp:paragraph -->
491
492<!-- wp:list -->
493<ul><li>Article en relation : <a href="/support/article/roles-and-capabilities/" data-type="URL" data-id="/support/article/roles-and-capabilities/">Rôles et permissions</a></li><li>Lien externe : <a href="https://fr.wikipedia.org/wiki/Contr%C3%B4le_d%27acc%C3%A8s_%C3%A0_base_de_r%C3%B4les">Contrôle</a><a href="https://en.wikipedia.org/wiki/Role-based_access_control"> d’accès à base de rôles</a> (Wikipedia en anglais)</li></ul>
494<!-- /wp:list -->
495
496<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
497<ul class="has-luminous-vivid-amber-background-color has-background"><li><a href="https://fr.wikipedia.org/wiki/Contr%C3%B4le_d%27acc%C3%A8s_%C3%A0_base_de_r%C3%B4les">Contrôle d’accès à base de rôles</a> (fr.Wikipedia.org),  <br><span class="has-inline-color has-vivid-red-color">lien ajouté et déjà présent dans le § <a href="#r%c3%b4le" data-type="internal" data-id="#r%c3%b4le">rôle</a>  Patrice</span></li></ul>
498<!-- /wp:list -->
499
500<!-- wp:heading -->
501<h2>CGI</h2>
502<!-- /wp:heading -->
503
504<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
505<p class="has-pale-cyan-blue-background-color has-background"><strong>CGI</strong> (Common Gateway Interface) is a specification for <a href="http://en.wikipedia.org/wiki/Server-side">server-side</a> communication scripts designed to transfer information between a <a href="https://codex.wordpress.org/Glossary#Web_server">web server</a> and a <a href="http://en.wikipedia.org/wiki/Client-side">web-client (browser)</a>.  Typically, <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a> pages that collect data via forms use <em>CGI</em> programming to process the form data once the client submits it.
506</p>
507<!-- /wp:paragraph -->
508
509<!-- wp:paragraph -->
510<p><strong>CGI</strong> (Common Gateway Interface) est une spécification pour les scripts de communication <a href="https://fr.wikipedia.org/wiki/Server-side" data-type="URL">côté serveur</a> conçus pour transférer des informations entre un <a href="#serveur-web" data-type="internal" data-id="#serveur-web">serveur web</a> et un <a href="https://fr.wikipedia.org/wiki/Navigateur_web" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Navigateur_web">client Web (navigateur)</a>. En règle générale, les pages <a href="#html" data-type="internal" data-id="#html">HTML</a> qui collectent des données via des formulaires utilisent la programmation CGI pour traiter les données du formulaire une fois que le client les envoie.</p>
511<!-- /wp:paragraph -->
512
513<!-- wp:heading -->
514<h2>Entité de caractère</h2>
515<!-- /wp:heading -->
516
517<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
518<p class="has-pale-cyan-blue-background-color has-background">A <strong>character entity</strong> is a method used to display <em>special characters</em> normally <em>reserved</em> for use in <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a>.  For example, the <em>less than</em> (<strong>&lt;</strong>) and <em>greater than</em> (<strong>&gt;</strong>) are used as part the <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a> tag structure, so both symbols are <em>reserved</em> for that use.  But, if you need to display those symbols on your site, you can use <em>character entities</em>.  For example:
519
520use <strong><code>&amp;lt;</code></strong>&nbsp;&nbsp;for the less than (&lt;) symbol
521use <strong><code>&amp;gt;</code></strong>&nbsp;&nbsp;for the greater than (&gt;) symbol
522</p>
523<!-- /wp:paragraph -->
524
525<!-- wp:paragraph -->
526<p>Une <strong>entité de caractère</strong> est une méthode utilisée pour afficher des caractères spéciaux normalement réservés pour une utilisation en <a href="#html" data-type="internal" data-id="#html">HTML</a>. Par exemple, les symboles inférieur à (&lt;) et supérieur à (&gt;) sont utilisés dans la structure de la balise <a href="#html" data-type="internal" data-id="#html">HTML</a>, les deux symboles sont donc réservés pour cette utilisation. Mais, si vous devez afficher ces symboles sur votre site, vous pouvez utiliser des entités de caractères. Par exemple&nbsp;: utiliser «&nbsp;<strong><code>&amp;lt;</code></strong>&nbsp;» pour le symbole inférieur à (&lt;) et utiliser «&nbsp;<strong><code>&amp;gt;</code></strong>&nbsp;» pour le symbole supérieur&nbsp;à&nbsp;(&gt;).</p>
527<!-- /wp:paragraph -->
528
529<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
530<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Fun_Character_Entities">Fun Character Entities</a></li></ul>
531<!-- /wp:list -->
532
533<!-- wp:list -->
534<ul><li>Article en relation&nbsp;: <a href="/support/article/fun-character-entities/" data-type="URL" data-id="/support/article/fun-character-entities/">Caractères étendus et entités HTML</a></li></ul>
535<!-- /wp:list -->
536
537<!-- wp:heading -->
538<h2>Jeu de caractères</h2>
539<!-- /wp:heading -->
540
541<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
542<p class="has-pale-cyan-blue-background-color has-background">A <strong>character set</strong> is a collection of symbols (letters, numbers,
543punctuation, and special characters), when used together, represent
544meaningful words in a language.  Computers use an encoding scheme so
545members of a character set are stored with a numeric value (e.g. 0=A,
5461=B, 2=C, 3=D).  In addition, a <a href="https://codex.wordpress.org/Glossary#Collation">collation</a> determines the order (i.e alphabetic) to use when sorting the character set.
547</p>
548<!-- /wp:paragraph -->
549
550<!-- wp:paragraph -->
551<p>Un <strong>jeu de caractères</strong> est une collection de symboles (lettres, chiffres, signes de ponctuation et caractères spéciaux) qui, utilisés ensemble, représentent des mots significatifs dans une langue. Les ordinateurs utilisent un schéma de codage afin que les membres d’un jeu de caractères soient stockés avec une valeur numérique (par exemple 0=A, 1=B, 2=C, 3=D). De plus, un <a href="#classement">interclassement</a> détermine l’ordre (c’est-à-dire alphabétique) à utiliser lors du tri du jeu de caractères.</p>
552<!-- /wp:paragraph -->
553
554<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
555<p class="has-pale-cyan-blue-background-color has-background">By default, WordPress uses the Unicode UTF-8 (<strong>utf8</strong>) character set for the <a href="https://codex.wordpress.org/Database_Description">WordPress MySQL database tables</a> created during the <a href="https://codex.wordpress.org/Installing_WordPress" data-type="URL" data-id="https://codex.wordpress.org/Installing_WordPress">installation process</a>.  Beginning with <a href="https://codex.wordpress.org/Version_2.2" data-type="URL" data-id="https://codex.wordpress.org/Version_2.2">Version 2.2</a>, the database character set (and collation) is defined in the <em>wp-config.php</em> file. </p>
556<!-- /wp:paragraph -->
557
558<!-- wp:paragraph -->
559<p>Par défaut, WordPress utilise le jeu de caractères Unicode UTF-8 (<strong>utf8</strong>) pour les <a href="https://codex.wordpress.org/Database_Description" data-type="URL" data-id="https://codex.wordpress.org/Database_Description">tables de base de données WordPress MySQL</a> (en anglais) créées lors du <a href="/support/article/how-to-install-wordpress/" data-type="URL" data-id="/support/article/how-to-install-wordpress/">processus d’installation</a>. À partir de la <a href="https://codex.wordpress.org/Version_2.2" data-type="URL" data-id="https://codex.wordpress.org/Version_2.2">version 2.2</a>, le jeu de caractères de la base de données (et le classement) est défini dans le fichier <em>wp-config.php</em>.</p>
560<!-- /wp:paragraph -->
561
562<!-- wp:list -->
563<ul><li>Voir aussi&nbsp;: <a href="#interclassement">Interclassement</a></li><li>Articles en relation&nbsp;: <a href="/support/article/editing-wp-config-php/" data-type="URL" data-id="/support/article/editing-wp-config-php/">Modifier le fichier wp-config.php</a>, <a href="https://codex.wordpress.org/Converting_Database_Character_Sets">Converting Database Character Sets</a> (en anglais)</li><li>Liens externes&nbsp;: <a href="https://fr.wikipedia.org/wiki/Codage_des_caract%C3%A8res" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Codage_des_caract%C3%A8res">Codage des caractères</a>, <a href="http://fr.wikipedia.org/wiki/Unicode" data-type="URL" data-id="http://fr.wikipedia.org/wiki/Unicode">Unicode</a>, <a href="http://fr.wikipedia.org/wiki/UTF-8" data-type="URL" data-id="http://fr.wikipedia.org/wiki/UTF-8">UTF-8</a>, <a href="http://dev.mysql.com/doc/refman/5.0/en/charset-general.html">Character sets and collation at MySQL</a> (en anglais)</li></ul>
564<!-- /wp:list -->
565
566<!-- wp:heading -->
567<h2>chmod</h2>
568<!-- /wp:heading -->
569
570<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
571<p class="has-pale-cyan-blue-background-color has-background"><strong>chmod</strong> is a <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a>/<a href="https://codex.wordpress.org/Glossary#Linux">Linux</a> <a href="https://codex.wordpress.org/Glossary#Shell">shell</a> command used to change <a href="https://codex.wordpress.org/Glossary#Permissions">permissions</a> on files. Its name is a contraction of "<strong>ch</strong>ange <strong>mod</strong>e."
572</p>
573<!-- /wp:paragraph -->
574
575<!-- wp:paragraph -->
576<p><strong>chmod</strong> est une commande <a href="https://codex.wordpress.org/Glossary#Shell">shell</a> <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a>/<a href="https://codex.wordpress.org/Glossary#Linux">Linux</a> utilisée pour modifier les <a href="https://codex.wordpress.org/Glossary#Permissions" data-type="URL" data-id="https://codex.wordpress.org/Glossary#Permissions">droits</a> sur les fichiers. Son nom est une contraction des mots anglais  «&nbsp;<strong>ch</strong>ange <strong>mod</strong>e&nbsp;» (changement de mod).</p>
577<!-- /wp:paragraph -->
578
579<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
580<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Changing_File_Permissions">Changing File Permissions</a>, <a href="https://codex.wordpress.org/UNIX_Shell_Skills">UNIX Shell Skills</a>, <a href="https://codex.wordpress.org/htaccess_for_subdirectories">htaccess for subdirectories</a></li></ul>
581<!-- /wp:list -->
582
583<!-- wp:list -->
584<ul><li>Articles en relation&nbsp;: <a href="/support/article/changing-file-permissions/" data-type="URL" data-id="/support/article/changing-file-permissions/">Changer les droits sur un fichier</a>, <a href="https://codex.wordpress.org/UNIX_Shell_Skills">UNIX Shell Skills</a> (en anglais), <a href="https://codex.wordpress.org/htaccess_for_subdirectories">htaccess for subdirectories</a> (en anglais)</li></ul>
585<!-- /wp:list -->
586
587<!-- wp:heading -->
588<h2>Class</h2>
589<!-- /wp:heading -->
590
591<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
592<p class="has-pale-cyan-blue-background-color has-background"><strong>Classes</strong> are groupings of <a href="https://codex.wordpress.org/Glossary#CSS">CSS</a> styles which can be applied to any <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a> element.
593For classes in PHP, see the <a href="http://en.wikipedia.org/wiki/Class#Computing">Class (Computing)</a> article at Wikipedia and <a href="http://php.net/manual/en/language.oop5.php">PHP Manual: Classes and Objects</a>.
594</p>
595<!-- /wp:paragraph -->
596
597<!-- wp:paragraph -->
598<p>Les <strong>classes</strong> sont des regroupements de styles <a href="#css" data-type="internal" data-id="#css">CSS</a> qui peuvent être appliqués à n’importe quel élément <a href="#html" data-type="internal" data-id="#html">HTML</a>. Pour les classes en PHP, consultez l’article <a href="https://fr.wikipedia.org/wiki/Class#Informatique" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Class#Informatique">Class (informatique)</a> et <a href="http://php.net/manual/fr/language.oop5.php" data-type="URL" data-id="http://php.net/manual/fr/language.oop5.php">Manuel PHP&nbsp;: Classes et Objects</a>.</p>
599<!-- /wp:paragraph -->
600
601<!-- wp:list -->
602<ul><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/CSS">CSS</a> (en anglais), <a href="https://codex.wordpress.org/Blog_Design_and_Layout">Blog Design and Layout</a> (en anglais)</li></ul>
603<!-- /wp:list -->
604
605<!-- wp:heading -->
606<h2>Codex</h2>
607<!-- /wp:heading -->
608
609<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
610<p class="has-pale-cyan-blue-background-color has-background">The <strong>Codex</strong> is the series of articles that show users how to use
611 WordPress. WordPress users contribute documentation to the codex
612voluntarily.
613</p>
614<!-- /wp:paragraph -->
615
616<!-- wp:paragraph -->
617<p>Le <strong>Codex</strong> est la série d’articles qui montrent aux utilisateurs comment utiliser WordPress. Les utilisateurs de WordPress contribuent volontairement à la documentation du codex.</p>
618<!-- /wp:paragraph -->
619
620<!-- wp:list -->
621<ul><li>Lien externe&nbsp;: <a href="http://codex.wordpress.org/Main_Page">Codex</a> (en anglais)</li></ul>
622<!-- /wp:list -->
623
624<!-- wp:heading -->
625<h2>Interclassement</h2>
626<!-- /wp:heading -->
627
628<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
629<p class="has-pale-cyan-blue-background-color has-background"><strong>Collation</strong> refers to the order used to sort the letters, numbers, and symbols of a given <a href="https://codex.wordpress.org/Glossary#Character_set">character set</a>.  For example, because WordPress, by default, uses the UTF-8 (<strong>utf8</strong>) character set, and when the <a href="https://codex.wordpress.org/Database_Description">WordPress MySQL database tables</a> are created during the <a href="https://codex.wordpress.org/Installing_WordPress">installation process</a>, MySQL assigns <strong>utf8_general_ci</strong> collation to those tables.  Beginning with <a href="https://codex.wordpress.org/Version_2.2">Version 2.2</a>, the collation (and character set) used by WordPress is defined in the <em>wp-config.php</em> file.
630</p>
631<!-- /wp:paragraph -->
632
633<!-- wp:paragraph -->
634<p>L’<strong>interclassement</strong> fait référence à l'ordre utilisé pour trier les lettres, les chiffres et les symboles d'un <a href="#jeu-de-caract%c3%a8res" data-type="internal">jeu de caractères</a> donné. Par exemple, parce que WordPress, par défaut, utilise le jeu de caractères UTF-8 (<strong>utf8</strong>), et lorsque les <a href="https://codex.wordpress.org/Database_Description" data-type="URL" data-id="https://codex.wordpress.org/Database_Description">tables de base de données WordPress MySQL</a> (en anglais) sont créées pendant le <a href="/support/article/how-to-install-wordpress/" data-type="URL" data-id="/support/article/how-to-install-wordpress/">processus d’installation</a>, MySQL attribue l’interclassement <strong>utf8_general_ci</strong> à ces tables. À partir de la <a href="https://codex.wordpress.org/Version_2.2">version 2.2</a>, l’interclassement (et le jeu de caractères) utilisé par WordPress est défini dans le fichier <em>wp-config.php</em>.</p>
635<!-- /wp:paragraph -->
636
637<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
638<ul class="has-pale-cyan-blue-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Character_set">Character set</a></li><li> Related articles: <a href="https://codex.wordpress.org/Editing_wp-config.php">Editing wp-config.php</a>, <a href="https://codex.wordpress.org/Converting_Database_Character_Sets">Converting Database Character Sets</a></li><li> External links: <a href="http://en.wikipedia.org/wiki/Collation">Collation at Wikipedia</a>, <a href="http://en.wikipedia.org/wiki/Character_set">Character set at Wikipedia</a>, <a href="http://en.wikipedia.org/wiki/UTF-8">UTF-8 at Wikipedia</a>, <a href="http://dev.mysql.com/doc/refman/5.0/en/charset-general.html">Character sets and collation at MySQL</a></li></ul>
639<!-- /wp:list -->
640
641<!-- wp:list -->
642<ul><li>Voir aussi&nbsp;: <a href="#jeu-de-caract%c3%a8res" data-type="internal" data-id="#jeu-de-caract%c3%a8res">Jeu de caractères</a></li><li>Articles en relation&nbsp;: <a href="/support/article/editing-wp-config-php/" data-type="URL">Modifier wp-config.php</a>, <a href="https://codex.wordpress.org/Converting_Database_Character_Sets">Converting Database Character Sets</a> (en anglais)</li><li>Liens externes&nbsp;: <a href="http://en.wikipedia.org/wiki/Collation">Collation</a> (en anglais), <a href="https://fr.wikipedia.org/wiki/Codage_des_caract%C3%A8res">Codage des caractères</a><a href="http://en.wikipedia.org/wiki/Character_set">Character set at Wikipedia</a> (en anglais),  <a href="http://dev.mysql.com/doc/refman/5.0/en/charset-general.html">Character sets and collation at MySQL</a> (en anglais), <a href="http://fr.wikipedia.org/wiki/UTF-8">UTF-8</a></li></ul>
643<!-- /wp:list -->
644
645<!-- wp:heading -->
646<h2>Commentaires</h2>
647<!-- /wp:heading -->
648
649<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
650<p class="has-pale-cyan-blue-background-color has-background"><strong>Comments</strong> are a feature of <a href="https://codex.wordpress.org/Glossary#Blog">blogs</a> which allow readers to respond to <a href="https://codex.wordpress.org/Glossary#Post">posts</a>. Typically readers simply provide their own thoughts regarding the <a href="https://codex.wordpress.org/Glossary#Content">content</a> of the post, but users may also provide <a href="http://en.wikipedia.org/wiki/Hyperlink">links</a> to other resources, generate discussion, or simply compliment the author for a well-written post.
651</p>
652<!-- /wp:paragraph -->
653
654<!-- wp:paragraph -->
655<p>Les <strong>commentaires</strong> sont une fonctionnalité des <a href="#blog" data-type="internal" data-id="#blog">blogs</a> qui permettent aux lecteurs de répondre aux <a href="#article" data-type="internal" data-id="#article">articles</a>. En règle générale, les lecteurs fournissent simplement leurs propres réflexions sur le <a href="#contenu" data-type="internal" data-id="#contenu">contenu</a> de l’article, mais les utilisateurs peuvent également fournir des <a href="https://fr.wikipedia.org/wiki/Hyperlien" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Hyperlien">liens</a> vers d’autres ressources, générer des discussions ou simplement féliciter l’auteur pour un article bien écrit.</p>
656<!-- /wp:paragraph -->
657
658<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
659<p class="has-pale-cyan-blue-background-color has-background">You can control and regulate comments by filters for language and  content. Comments can be queued for approval before they are visible on  the web site. This is useful in dealing with <a href="https://codex.wordpress.org/Comment_Spam">comment spam</a>. </p>
660<!-- /wp:paragraph -->
661
662<!-- wp:paragraph -->
663<p>Vous pouvez contrôler et réguler les commentaires par des filtres pour la langue et le contenu. Les commentaires peuvent être mis en file d’attente pour approbation avant d’être visibles sur le site. Ceci est utile pour traiter les <a href="/support/article/comment-spam/" data-type="URL" data-id="/support/article/comment-spam/">commentaires indésirables</a>.</p>
664<!-- /wp:paragraph -->
665
666<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
667<ul class="has-pale-cyan-blue-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Blog">Blog</a></li><li> Related articles: <a href="https://codex.wordpress.org/Plugins#Comment_Plugins">Comment-related plugins</a>, <a href="https://codex.wordpress.org/Comment_Spam">Dealing with comment spam</a>, <a href="https://codex.wordpress.org/Settings_Discussion_SubPanel">Settings Discussion SubPanel</a></li><li> External links: <a href="http://en.wikipedia.org/wiki/Hyperlink">Hyperlink at Wikipedia</a></li></ul>
668<!-- /wp:list -->
669
670<!-- wp:list -->
671<ul><li>Voir aussi&nbsp;: <a href="#blog" data-type="internal" data-id="#blog">Blog</a></li><li>Articles en relation&nbsp;: <a href="/support/article/plugins/" data-type="URL" data-id="/support/article/plugins/">Les extensions</a>, <a href="/support/article/comment-spam/" data-type="URL" data-id="/support/article/comment-spam/">Commentaires indésirables</a>, <a href="/support/article/settings-discussion-screen/" data-type="URL" data-id="/support/article/settings-discussion-screen/">Réglages des écrans de discussions</a></li><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Hyperlien" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Hyperlien">Hyperlien</a></li></ul>
672<!-- /wp:list -->
673
674<!-- wp:heading -->
675<h2>Contenu</h2>
676<!-- /wp:heading -->
677
678<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
679<p class="has-pale-cyan-blue-background-color has-background"><strong>Content</strong> consists of text, images, or other information shared in <a href="https://codex.wordpress.org/Glossary#Post">posts</a>.
680 This is separate from the structural design of a web site, which
681provides a framework into which the content is inserted, and the
682presentation of a site, which involves graphic design. A <a href="https://codex.wordpress.org/Glossary#Content_Management_System">Content Management System</a> changes and updates content, rather than the structural or graphic design of a web site.
683</p>
684<!-- /wp:paragraph -->
685
686<!-- wp:paragraph -->
687<p>Le <strong>contenu</strong> se compose de texte, d’images ou d’autres informations partagées dans les <a href="#article" data-type="internal" data-id="#article">articles</a>. Ceci est distinct de la conception structurelle d'un site, qui fournit un cadre dans lequel le contenu est inséré, et de la présentation d’un site, qui implique la conception graphique. Un système de gestion de contenu (<a href="#cms" data-type="internal" data-id="#cms">CMS</a>) modifie et met à jour le contenu, plutôt que la conception structurelle ou graphique d’un site.</p>
688<!-- /wp:paragraph -->
689
690<!-- wp:heading -->
691<h2>CMS</h2>
692<!-- /wp:heading -->
693
694<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
695<p class="has-pale-cyan-blue-background-color has-background">A <strong>Content Management System</strong>, or <strong>CMS</strong>, is software for facilitating the maintenance of <a href="https://codex.wordpress.org/Glossary#Content">content</a>, but not design, on a web site. A <a href="https://codex.wordpress.org/Glossary#Blog">blogging</a> tool is an example of a Content Management System.
696</p>
697<!-- /wp:paragraph -->
698
699<!-- wp:paragraph -->
700<p>Un <strong>système de gestion de contenu</strong>, ou <strong>CMS</strong>, est un logiciel destiné à faciliter la maintenance du <a href="#contenu" data-type="internal" data-id="#contenu">contenu</a>, mais pas la conception, sur un site. Un outil de <a href="#blog" data-type="internal" data-id="#blog">blogging</a> est un exemple de système de gestion de contenu.</p>
701<!-- /wp:paragraph -->
702
703<!-- wp:list -->
704<ul><li>Voir aussi&nbsp;: <a href="#blog" data-type="internal" data-id="#blog">Blog</a></li></ul>
705<!-- /wp:list -->
706
707<!-- wp:heading -->
708<h2>cPanel</h2>
709<!-- /wp:heading -->
710
711<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
712<p class="has-pale-cyan-blue-background-color has-background"><strong>cPanel</strong> is a popular web-based administration tool that many <a href="https://codex.wordpress.org/Glossary#Hosting_provider">hosting providers</a> provide to allow users to configure their own accounts using an easy-to-use interface.
713</p>
714<!-- /wp:paragraph -->
715
716<!-- wp:paragraph -->
717<p><strong>cPanel</strong> est un outil d’administration web populaire fourni par de nombreux <a href="#fournisseurs-d%e2%80%99h%c3%a9bergement">fournisseurs d’hébergement</a> pour permettre aux utilisateurs de configurer leurs propres comptes à l’aide d’une interface facile à utiliser.</p>
718<!-- /wp:paragraph -->
719
720<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
721<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Using_cPanel">Using cPanel</a>, <a href="https://codex.wordpress.org/Using_Themes#Adding_New_Themes_by_using_cPanel">Adding New Themes by using cPanel</a></li><li> External links: <a href="http://cpanel.net/">cPanel website</a></li></ul>
722<!-- /wp:list -->
723
724<!-- wp:list -->
725<ul><li>Articles en relation&nbsp;: <a href="/support/article/using-cpanel/" data-type="URL" data-id="/support/article/using-cpanel/">Utiliser cPanel</a>, <a href="/support/article/using-themes/" data-type="URL" data-id="/support/article/using-themes/">Ajouter un nouveau thème en utilisant cPanel</a></li><li>Lien externe&nbsp;: <a href="http://cpanel.net/">Site web cPanel</a></li></ul>
726<!-- /wp:list -->
727
728<!-- wp:heading -->
729<h2>CSS</h2>
730<!-- /wp:heading -->
731
732<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
733<p class="has-pale-cyan-blue-background-color has-background"><strong>CSS</strong>, or <strong>Cascading Style Sheets</strong>, is a <a href="http://www.w3.org/">W3C</a> <a href="http://en.wikipedia.org/wiki/Open_standard">open standards</a>
734 programming language for specifying how a web page is presented. It
735allows web site designers to create formatting and layout for a web site
736 independently of its content.
737</p>
738<!-- /wp:paragraph -->
739
740<!-- wp:paragraph -->
741<p><strong>CSS</strong>, ou <strong>Feuilles de style en cascade</strong>, est un langage de programmation aux <a href="https://fr.wikipedia.org/wiki/Format_ouvert" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Format_ouvert">normes ouvertes</a> du <a href="http://www.w3.org/" data-type="URL" data-id="http://www.w3.org/">W3C</a> permettant de spécifier la présentation d’une page web. Il permet aux concepteurs de sites de créer la mise en forme et la mise en page d’un site indépendamment de son contenu.</p>
742<!-- /wp:paragraph -->
743
744<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
745<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/CSS">CSS</a>, <a href="https://codex.wordpress.org/Blog_Design_and_Layout">Blog Design and Layout</a></li><li> External links: <a href="http://www.w3.org/Style/CSS/">CSS at W3C</a> , <a href="http://en.wikipedia.org/wiki/Open_standard">Open standards at Wikipedia</a>, <a href="http://www.w3.org/">W3C.org</a></li></ul>
746<!-- /wp:list -->
747
748<!-- wp:list -->
749<ul><li>Articles en relation : <a href="https://codex.wordpress.org/CSS">CSS</a> (en anglais), <a href="https://codex.wordpress.org/Blog_Design_and_Layout">Blog Design and Layout</a> (en anglais)</li><li>Liens externes : <a href="http://www.w3.org/Style/CSS/">CSS sur W3C</a> (en anglais), <a href="http://www.w3.org/">W3C.org</a>, (en anglais) <a href="https://fr.wikipedia.org/wiki/Format_ouvert" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Format_ouvert">Normes ouvertes</a></li></ul>
750<!-- /wp:list -->
751
752<!-- wp:heading -->
753<h2>CVS</h2>
754<!-- /wp:heading -->
755
756<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
757<p class="has-pale-cyan-blue-background-color has-background"><strong>CVS</strong> stands for <strong>Concurrent Versions System</strong> and is the
758software that used to be used coordinate WordPress development. As of
759February 2005, this function is carried out by Subversion (<a href="https://codex.wordpress.org/Glossary#SVN">SVN</a>).
760</p>
761<!-- /wp:paragraph -->
762
763<!-- wp:paragraph -->
764<p><strong>CVS </strong>signifie <strong>Concurrent Versions System</strong> et est le logiciel qui était utilisé pour coordonner le développement WordPress. Depuis février 2005, cette fonction est assurée par Subversion (<a href="https://fr.wikipedia.org/wiki/Apache_Subversion" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Apache_Subversion">SVN</a>). </p>
765<!-- /wp:paragraph -->
766
767<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
768<p class="has-pale-cyan-blue-background-color has-background">For more information on Subversion, see <a href="https://codex.wordpress.org/Using_Subversion">Using Subversion</a>.
769</p>
770<!-- /wp:paragraph -->
771
772<!-- wp:paragraph -->
773<p>Pour plus d'informations sur Subversion, consultez <a href="https://codex.wordpress.org/Using_Subversion">Using Subversion</a> (en anglais). </p>
774<!-- /wp:paragraph -->
775
776<!-- wp:heading -->
777<h2>Tableau de bord</h2>
778<!-- /wp:heading -->
779
780<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
781<p class="has-pale-cyan-blue-background-color has-background">In WordPress a <strong>Dashboard</strong> is the main administration screen for
782 a site (a weblog), or for a network of sites. It summarizes information
783 about the site or network, and also external information, in one or
784more <a href="https://codex.wordpress.org/Glossary#Widget">widgets</a> that the Dashboard user can enable, disable, and move around.
785</p>
786<!-- /wp:paragraph -->
787
788<!-- wp:paragraph -->
789<p>Dans WordPress, le <strong>tableau de bord</strong> est l’écran principal d’administration d’un site (ou d’un blog) ou d’un réseau de sites. Il résume les informations sur le site ou le réseau, ainsi que les informations externes, dans un ou plusieurs <a href="#widget" data-type="internal" data-id="#widget">widgets</a> que l’utilisateur du tableau de bord peut activer, désactiver et déplacer. </p>
790<!-- /wp:paragraph -->
791
792<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
793<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Dashboard_Screen">Dashboard Screen</a></li></ul>
794<!-- /wp:list -->
795
796<!-- wp:list -->
797<ul><li>Article en relation : <a href="/support/article/dashboard-screen/" data-type="URL" data-id="/support/article/dashboard-screen/">Écran du tableau de bord</a></li></ul>
798<!-- /wp:list -->
799
800<!-- wp:heading -->
801<h2>Base de données</h2>
802<!-- /wp:heading -->
803
804<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
805<p class="has-pale-cyan-blue-background-color has-background">A <strong>database</strong> in computing terms is software used to manage information in an organized fashion. <a href="https://codex.wordpress.org/Glossary#WordPress">WordPress</a> uses the <a href="https://codex.wordpress.org/Glossary#MySQL">MySQL</a> or <a href="https://codex.wordpress.org/Glossary#MariaDB">MariaDB</a> relational databases management system for storing and retrieving the content of your <a href="https://codex.wordpress.org/Glossary#Blog">blog</a>, such as <a href="https://codex.wordpress.org/Glossary#Posts">posts</a>, <a href="https://codex.wordpress.org/Glossary#Comments">comments</a>, and so on.
806</p>
807<!-- /wp:paragraph -->
808
809<!-- wp:paragraph -->
810<p>Une <strong>base de données</strong> en termes informatiques est un logiciel utilisé pour gérer les informations de manière organisée. <a href="https://fr.wikipedia.org/wiki/WordPress" data-type="URL" data-id="https://fr.wikipedia.org/wiki/WordPress">WordPress</a> utilise le système de gestion de bases de données relationnelles <a href="#mysql" data-type="internal" data-id="#mysql">MySQL</a> ou <a href="#mariadb" data-type="internal" data-id="#mariadb">MariaDB</a> pour stocker et récupérer le contenu de votre <a href="#blog" data-type="internal" data-id="#blog">blog</a>, comme les <a href="#publication">articles</a>, les <a href="#commentaire" data-type="internal" data-id="#commentaire">commentaires</a>, etc.</p>
811<!-- /wp:paragraph -->
812
813<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
814<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Database_Description">Database Description</a>, <a href="https://codex.wordpress.org/Backing_Up_Your_Database">Backing Up Your Database</a></li></ul>
815<!-- /wp:list -->
816
817<!-- wp:list -->
818<ul><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Database_Description">Database Description</a> (en anglais), <a href="/support/article/backing-up-your-database/" data-type="URL" data-id="/support/article/backing-up-your-database/">Sauvegarder votre base de données</a></li></ul>
819<!-- /wp:list -->
820
821<!-- wp:heading -->
822<h2>Version de base de données</h2>
823<!-- /wp:heading -->
824
825<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
826<p class="has-pale-cyan-blue-background-color has-background">In WordPress, the <strong>database version</strong> is a number that increases every time changes are made to the way WordPress organizes the data in its <a href="https://codex.wordpress.org/Glossary#database">database</a>. It is not the same as the version of the database software, <a href="https://codex.wordpress.org/Glossary#MySQL">MySQL</a> or <a href="https://codex.wordpress.org/Glossary#MariaDB">MariaDB</a>.
827</p>
828<!-- /wp:paragraph -->
829
830<!-- wp:paragraph -->
831<p>Dans WordPress, la version de la base de données est un nombre qui augmente chaque fois que des modifications sont apportées à la façon dont WordPress organise les données dans sa base de données. Ce n’est pas la même que la version du logiciel de base de données, <a href="#mysql" data-type="internal" data-id="#mysql">MySQL</a> ou <a href="#mariadb" data-type="internal" data-id="#mariadb">MariaDB</a>. </p>
832<!-- /wp:paragraph -->
833
834<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
835<p class="has-pale-cyan-blue-background-color has-background">For example, the database version in WordPress 3.3 was 19470, and
836 the database version in WordPress 3.3.1 did not change. This tells
837anyone planning to use backed-up data from the older version that they
838do not need to check for changes in the structure of the data.
839</p>
840<!-- /wp:paragraph -->
841
842<!-- wp:paragraph -->
843<p>Par exemple, la version de la base de données dans WordPress 3.3 était 19470 et la version de la base de données dans WordPress 3.3.1 n’a pas changé. Cela indique à toute personne prévoyant d’utiliser des données sauvegardées de l’ancienne version qu’elle n’a pas besoin de vérifier les changements dans la structure des données.</p>
844<!-- /wp:paragraph -->
845
846<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
847<p class="has-pale-cyan-blue-background-color has-background">WordPress stores its database version in the database, as the
848option named "db_version" in every WordPress site's "wp_options" table.
849(The table name prefix "wp_" may be missing or different in some cases.)
850</p>
851<!-- /wp:paragraph -->
852
853<!-- wp:paragraph -->
854<p>WordPress stocke sa version de base de données dans la base de données, dans le champ «&nbsp;db_version&nbsp;» dans la table «&nbsp;wp_options&nbsp;» de chaque site WordPress. (Le préfixe de nom de table «&nbsp;wp_&nbsp;» peut être manquant ou différent dans certains cas.) </p>
855<!-- /wp:paragraph -->
856
857<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
858<ul class="has-light-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Database_Description">Database Description</a>, <a href="https://codex.wordpress.org/FAQ_Installation#How_do_you_force_a_database_upgrade.3F">How do you force a database upgrade?</a></li></ul>
859<!-- /wp:list -->
860
861<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
862<ul class="has-luminous-vivid-amber-background-color has-background"><li> Articles en relation : <a href="https://codex.wordpress.org/Database_Description">Database Description</a> (en anglais), <a href="https://codex.wordpress.org/FAQ_Installation#How_do_you_force_a_database_upgrade.3F">How do you force a database upgrade?</a> (en anglais) <span class="has-inline-color has-vivid-red-color">ce second menu n’apparait pas dans la</span> <a href="/support/article/faq-installation/" data-type="URL" data-id="/support/article/faq-installation/">faq Installation</a>. <span class="has-inline-color has-vivid-red-color">ni en versions anglaise ni en version française.<br>Si suppression, mettre "Articles" au singuler</span>. Patrice ;-) </li><li>Je pense qu’il serait judicieux de mettre plutôt cet article :<br><a href="/support/article/updating-wordpress/" data-type="URL" data-id="/support/article/updating-wordpress/">Comment mettre à jour WordPress</a></li></ul>
863<!-- /wp:list -->
864
865<!-- wp:heading -->
866<h2>Thème par défaut</h2>
867<!-- /wp:heading -->
868
869<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
870<p class="has-pale-cyan-blue-background-color has-background">Every installation of WordPress has a <a href="https://codex.wordpress.org/Glossary#Default_theme">default theme</a>.  The default theme is sometimes called the <strong>fallback theme</strong>, because if the active theme is for some reason lost or deleted, WordPress will fallback to using the default theme.
871</p>
872<!-- /wp:paragraph -->
873
874<!-- wp:paragraph -->
875<p>Chaque installation de WordPress a un thème par défaut. Le thème par défaut est parfois appelé <strong>thème de secours</strong>, car si le thème actif est pour une raison quelconque perdu ou supprimé, WordPress reviendra à l’utilisation du thème par défaut.</p>
876<!-- /wp:paragraph -->
877
878<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
879<p class="has-pale-cyan-blue-background-color has-background">The WordPress default themes have been:
880</p>
881<!-- /wp:paragraph -->
882
883<!-- wp:paragraph -->
884<p>Les thèmes par défaut de WordPress ont été&nbsp;:</p>
885<!-- /wp:paragraph -->
886
887<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
888<ul class="has-pale-cyan-blue-background-color has-background"><li>Up to <a href="https://codex.wordpress.org/Version_2.9.2">Version 2.9.2</a> the default theme was the WordPress Default theme (sometimes called Kubrick) and was located in the <em>wp-content/themes/default</em> folder.  </li><li> <a href="https://codex.wordpress.org/Version_3.0">Version 3.0</a> - the <a href="https://codex.wordpress.org/Glossary#Twenty_Ten_theme">Twenty Ten theme</a></li><li> <a href="https://codex.wordpress.org/Version_3.2">Version 3.2</a> - the <a href="https://codex.wordpress.org/Glossary#Twenty_Eleven_theme">Twenty Eleven theme</a> </li><li> <a href="https://codex.wordpress.org/Version_3.5">Version 3.5</a> - the <a href="https://codex.wordpress.org/Glossary#Twenty_Twelve_theme">Twenty Twelve theme</a></li><li> <a href="https://codex.wordpress.org/Version_3.6">Version 3.6</a> - the <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Thirteen theme</a></li><li> <a href="https://codex.wordpress.org/Version_3.8">Version 3.8</a> - the <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Fourteen theme</a></li><li> <a href="https://codex.wordpress.org/Version_4.1">Version 4.1</a> - the <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Fifteen theme</a></li><li> <a href="https://codex.wordpress.org/Version_4.4">Version 4.4</a> - the <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Sixteen theme</a></li></ul>
889<!-- /wp:list -->
890
891<!-- wp:paragraph {"backgroundColor":"vivid-red"} -->
892<p class="has-vivid-red-background-color has-background"><span class="has-inline-color has-white-color">Les liens ci-dessous vers les thèmes sont à actualiser en interne. </span></p>
893<!-- /wp:paragraph -->
894
895<!-- wp:paragraph {"backgroundColor":"vivid-red"} -->
896<p class="has-vivid-red-background-color has-background"><a href="#th%c3%a8me-twenty-ten" data-type="internal" data-id="#th%c3%a8me-twenty-ten"><span class="has-inline-color has-luminous-vivid-amber-color">Thème Twenty Ten</span></a><span class="has-inline-color has-white-color">,</span> <span class="has-inline-color has-white-color"> par exemple</span><br><span class="has-inline-color has-white-color">Patrice 04/12/2020</span></p>
897<!-- /wp:paragraph -->
898
899<!-- wp:list {"backgroundColor":"pale-pink"} -->
900<ul class="has-pale-pink-background-color has-background"><li>Jusqu’à la version 2.9.2, le thème par défaut était le thème par défaut de WordPress (parfois appelé Kubrick) et se trouvait dans le dossier <em>wp-content/themes/default</em>  </li><li><a href="https://codex.wordpress.org/Version_3.0">Version 3.0</a> - le thème <a href="https://codex.wordpress.org/Glossary#Twenty_Ten_theme">Twenty Ten</a>          (2010)</li><li><a href="https://codex.wordpress.org/Version_3.2">Version 3.2</a> - le thème <a href="https://codex.wordpress.org/Glossary#Twenty_Eleven_theme">Twenty Eleven</a>     (2011)</li><li><a href="https://codex.wordpress.org/Version_3.5">Version 3.5</a> - le thème <a href="https://codex.wordpress.org/Glossary#Twenty_Twelve_theme">Twenty Twelve</a>    (2012)</li><li><a href="https://codex.wordpress.org/Version_3.6">Version 3.6</a> - le thème <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Thirteen</a>  (2013)</li><li><a href="https://codex.wordpress.org/Version_3.8">Version 3.8</a> - le thème <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Fourteen</a> (2014)</li><li><a href="https://codex.wordpress.org/Version_4.1">Version 4.1</a> - le thème <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Fifteen</a>     (2015)</li><li><a href="https://codex.wordpress.org/Version_4.4">Version 4.4</a> - le thème <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Sixteen</a>    (2016)<br><strong>-- à compléter --</strong></li></ul>
901<!-- /wp:list -->
902
903<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
904<ul class="has-light-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Twenty_Ten_theme">Twenty Ten theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Eleven_theme">Twenty Eleven theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Twelve_theme">Twenty Twelve theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Thirteen theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Fourteen_theme">Twenty Fourteen theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Fifteen_theme">Twenty Fifteen theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Sixteen_theme">Twenty Sixteen theme</a> </li><li> Related articles: <a href="https://codex.wordpress.org/Child_Themes">Child Themes</a></li></ul>
905<!-- /wp:list -->
906
907<!-- wp:paragraph {"backgroundColor":"vivid-red","textColor":"white"} -->
908<p class="has-white-color has-vivid-red-background-color has-text-color has-background">Les liens "Voir aussi" ci dessous sont redondants avec ceux ci dessus : inutiles<br>Seul, celui vers le thème enfant est à conserver</p>
909<!-- /wp:paragraph -->
910
911<!-- wp:list -->
912<ul><li>Voir aussi&nbsp;(en anglais) : <a href="https://codex.wordpress.org/Glossary#Twenty_Ten_theme">Twenty Ten theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Eleven_theme">Twenty Eleven theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Twelve_theme">Twenty Twelve theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Thirteen_theme">Twenty Thirteen theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Fourteen_theme">Twenty Fourteen theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Fifteen_theme">Twenty Fifteen theme</a>, <a href="https://codex.wordpress.org/Glossary#Twenty_Sixteen_theme">Twenty Sixteen theme</a> </li><li>Article en relation&nbsp;: <a href="https://codex.wordpress.org/fr:Th%C3%A8mes_Enfant" data-type="URL" data-id="https://codex.wordpress.org/fr:Th%C3%A8mes_Enfant">Thèmes enfant</a> </li></ul>
913<!-- /wp:list -->
914
915<!-- wp:heading -->
916<h2>Déprécié</h2>
917<!-- /wp:heading -->
918
919<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
920<p class="has-pale-cyan-blue-background-color has-background"><strong>Deprecated</strong> functions or template tags are no longer supported, and will soon be obsolete.
921</p>
922<!-- /wp:paragraph -->
923
924<!-- wp:paragraph -->
925<p>Les fonctions ou balises de modèle <strong>dépréciées</strong> ne sont plus prises en charge et seront bientôt obsolètes.</p>
926<!-- /wp:paragraph -->
927
928<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
929<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Category:Deprecated_Functions">"Deprecated Functions" Category</a></li></ul>
930<!-- /wp:list -->
931
932<!-- wp:list -->
933<ul><li>Article en relation : <a href="https://codex.wordpress.org/Category:Deprecated_Functions">«&nbsp;Deprecated Functions&nbsp;» Category</a> (en anglais)</li></ul>
934<!-- /wp:list -->
935
936<!-- wp:heading -->
937<h2>Développeur</h2>
938<!-- /wp:heading -->
939
940<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
941<p class="has-pale-cyan-blue-background-color has-background">A <strong>developer</strong>, or <strong>dev</strong>, is a computer programmer who is active in creating, modifying, and updating a software product.
942</p>
943<!-- /wp:paragraph -->
944
945<!-- wp:paragraph -->
946<p>Un·e <strong>développeur</strong>·euse, ou <strong>dev</strong>, est une personne qui créé les programmes informatiques, les modifie et réalise les mise à jour des logiciels.</p>
947<!-- /wp:paragraph -->
948
949<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
950<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Plugin_API">Plugin API</a></li></ul>
951<!-- /wp:list -->
952
953<!-- wp:list -->
954<ul><li>Article en relation : <a href="https://codex.wordpress.org/Plugin_API">Plugin API</a> (en anglais)</li></ul>
955<!-- /wp:list -->
956
957<!-- wp:heading -->
958<h2>DIV</h2>
959<!-- /wp:heading -->
960
961<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
962<p class="has-pale-cyan-blue-background-color has-background">A <strong>DIV</strong> element in <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a> marks a section of text. DIVs are used extensively in WordPress to apply <a href="https://codex.wordpress.org/Glossary#CSS">CSS</a> stylings to particular <a href="https://codex.wordpress.org/Glossary#Blog">blog</a> elements.
963</p>
964<!-- /wp:paragraph -->
965
966<!-- wp:paragraph -->
967<p>Un élément <strong>DIV</strong> en <a href="#html" data-type="internal" data-id="#html">HTML</a> marque une section de texte. Les DIV sont largement utilisés dans WordPress pour appliquer des styles <a href="http://€css" data-type="URL" data-id="€css">CSS</a> à des éléments de <a href="#blog" data-type="internal" data-id="#blog">blog</a> particuliers.</p>
968<!-- /wp:paragraph -->
969
970<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
971<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/CSS">CSS</a>, <a href="https://codex.wordpress.org/Blog_Design_and_Layout">Blog Design and Layout</a></li></ul>
972<!-- /wp:list -->
973
974<!-- wp:list -->
975<ul><li>Articles en relation : <a href="https://codex.wordpress.org/CSS">CSS</a> (en anglais), <a href="https://codex.wordpress.org/Blog_Design_and_Layout">Blog Design and Layout</a> (en anglais)</li></ul>
976<!-- /wp:list -->
977
978<!-- wp:heading -->
979<h2>DNS</h2>
980<!-- /wp:heading -->
981
982<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
983<p class="has-pale-cyan-blue-background-color has-background"><strong>DNS</strong>, the domain name system, is the system that maps <a href="https://codex.wordpress.org/Glossary#Domain_name">domain names</a> to <a href="https://codex.wordpress.org/Glossary#IP_address">IP addresses</a>.
984 When you use a web browser to visit a website, your browser first
985extracts the site's domain name from the URL. Then it uses the DNS to
986find the IP address for that domain name. Then it connects to that IP
987address.
988</p>
989<!-- /wp:paragraph -->
990
991<!-- wp:paragraph -->
992<p><strong>DNS</strong>, le système de nom de domaine, est le système qui mappe les <a href="#nom-de-domaine" data-type="internal" data-id="#nom-de-domaine">noms de domaine</a> aux <a href="#adresse-IP" data-type="internal" data-id="#adresse-IP">adresses IP</a>. Lorsque vous utilisez un navigateur web pour visiter un site, votre navigateur extrait d’abord le nom de domaine du site de l’URL. Ensuite, il utilise le DNS pour trouver l’adresse IP de ce nom de domaine. Ensuite, il se connecte à cette adresse IP.</p>
993<!-- /wp:paragraph -->
994
995<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
996<ul class="has-pale-cyan-blue-background-color has-background"><li> External link: <a href="http://en.wikipedia.org/wiki/Domain_Name_System">Domain Name System</a> (Wikipedia)</li></ul>
997<!-- /wp:list -->
998
999<!-- wp:list -->
1000<ul><li>Lien externe : <a href="https://fr.wikipedia.org/wiki/Nom_de_domaine" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Nom_de_domaine">Nom de domaine</a></li></ul>
1001<!-- /wp:list -->
1002
1003<!-- wp:heading -->
1004<h2>DOM</h2>
1005<!-- /wp:heading -->
1006
1007<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1008<p class="has-pale-cyan-blue-background-color has-background"><strong>DOM</strong> (Document Object Model) is a standard,
1009platform-independent interface that allows programmers to dynamically
1010access HTML and XML to control the content and structure of documents.
1011DOM connects programming scripts to web pages.
1012</p>
1013<!-- /wp:paragraph -->
1014
1015<!-- wp:paragraph -->
1016<p><strong>DOM</strong> (<strong>D</strong>ocument <strong>O</strong>bject <strong>M</strong>odel) est une interface standard indépendante de l’<a href="https://fr.wikipedia.org/wiki/Interface_de_programmation" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Interface_de_programmation">interface de programmation</a> qui permet aux programmeurs d’accéder dynamiquement au HTML et au XML pour contrôler le contenu et la structure des documents. DOM connecte les scripts de programmation aux pages web.</p>
1017<!-- /wp:paragraph -->
1018
1019<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
1020<ul class="has-pale-cyan-blue-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/Document_Object_Model">DOM at Wikipedia</a>, <a href="http://www.w3.org/DOM/">DOM at W3C.org</a></li></ul>
1021<!-- /wp:list -->
1022
1023<!-- wp:list -->
1024<ul><li>Liens externes : <a href="https://fr.wikipedia.org/wiki/Document_Object_Model" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Document_Object_Model">DOM</a>, ou sur W3C <a href="http://www.w3.org/DOM/">DOM</a> (en anglais)</li></ul>
1025<!-- /wp:list -->
1026
1027<!-- wp:heading -->
1028<h2>Nom de domaine</h2>
1029<!-- /wp:heading -->
1030
1031<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1032<p class="has-pale-cyan-blue-background-color has-background">A <strong>domain name</strong> is a name used for identification purposes on
1033the Internet. In WordPress a domain name usually identifies a server
1034where WordPress is installed. To make this work, the Internet's domain
1035name system (<a href="https://codex.wordpress.org/Glossary#DNS">DNS</a>) maps the domain name to a server's <a href="https://codex.wordpress.org/Glossary#IP_address">IP address</a>. For example, the domain name <em>example.com</em> maps to the IP address <em>192.0.43.10</em>.
1036 Many domain names can map to the same IP address, allowing a single
1037server to run many websites. For example, the domain names <em>www.example.com</em> and <em>example.net</em> also map to the IP address <em>192.0.43.10</em>.
1038</p>
1039<!-- /wp:paragraph -->
1040
1041<!-- wp:paragraph -->
1042<p>Un <strong>nom de domaine</strong> est un nom utilisé à des fins d’identification sur internet. Dans WordPress, un nom de domaine identifie généralement un serveur sur lequel WordPress est installé. Pour que cela fonctionne, le système de nom de domaine (<a href="#dns" data-type="internal" data-id="#dns">DNS</a>) de l’internet mappe le nom de domaine à l’<a href="#adresse-ip" data-type="internal" data-id="#adresse-ip">adresse IP</a> d’un serveur. Par exemple, le nom de domaine example.com correspond à l’adresse IP 192.0.43.10. De nombreux noms de domaine peuvent être mappés vers la même adresse IP, permettant à un seul serveur d’exécuter plusieurs sites. Par exemple, les noms de domaine <em>www.example.com</em> et <em>example.net</em> correspondent également à l'adresse&nbsp;IP&nbsp;<em>192.0.43.10</em>. </p>
1043<!-- /wp:paragraph -->
1044
1045<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
1046<ul class="has-pale-cyan-blue-background-color has-background"><li> External link: <a href="http://en.wikipedia.org/wiki/Domain_name">Domain name</a> (Wikipedia)</li></ul>
1047<!-- /wp:list -->
1048
1049<!-- wp:list -->
1050<ul><li>Lien externe : <a href="https://fr.wikipedia.org/wiki/Nom_de_domaine" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Nom_de_domaine">Nom de domaine</a></li></ul>
1051<!-- /wp:list -->
1052
1053<!-- wp:heading -->
1054<h2>Brouillon</h2>
1055<!-- /wp:heading -->
1056
1057<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1058<p class="has-pale-cyan-blue-background-color has-background">The <strong>draft</strong> <a href="https://codex.wordpress.org/Glossary#Post_status">post status</a> is for WordPress <a href="https://codex.wordpress.org/Glossary#Post">posts</a> which are saved, but as yet unpublished. A draft post can only be edited through the <a href="https://codex.wordpress.org/Administration_Panels">Administration Panel</a>, <a href="https://codex.wordpress.org/Write_Post_SubPanel">Write Post SubPanel</a> by <a href="https://codex.wordpress.org/Authors_and_Users_SubPanel#Table_of_Authors">users</a> of equal or greater <a href="https://codex.wordpress.org/User_Levels">User Level</a> than the <a href="https://codex.wordpress.org/Authors_and_Users_SubPanel#Table_of_Registered_Users">post's author</a>.
1059</p>
1060<!-- /wp:paragraph -->
1061
1062<!-- wp:paragraph -->
1063<p>L’<a href="#état-de-publication" data-type="internal" data-id="#état-de-publication">état de publication</a> en <strong>brouillon</strong> concerne les <a href="#article" data-type="internal" data-id="#article">articles</a> WordPress qui sont enregistrés, mais qui ne sont pas encore publiés. Un brouillon d’article ne peut être modifié que via le <a href="/support/article/administration-screens/" data-type="URL" data-id="/support/article/administration-screens/">panneau d’administration</a>, <a href="https://codex.wordpress.org/Write_Post_SubPanel" data-type="URL" data-id="https://codex.wordpress.org/Write_Post_SubPanel">sous-panneau d’écriture</a> de l’article, par des <a href="/support/article/users-screen/" data-type="URL" data-id="/support/article/users-screen/">utilisateurs</a> d’un <a href="/support/article/roles-and-capabilities/" data-type="URL" data-id="/support/article/roles-and-capabilities/">niveau d’utilisateur</a> égal ou supérieur à celui de l’auteur du message. </p>
1064<!-- /wp:paragraph -->
1065
1066<!-- wp:heading -->
1067<h2>Extrait</h2>
1068<!-- /wp:heading -->
1069
1070<!-- wp:paragraph {"style":{"color":{"background":"#f2eec2"}}} -->
1071<p class="has-background" style="background-color:#f2eec2">An <strong>excerpt</strong> is a condensed description of your blog <a href="https://codex.wordpress.org/Glossary#Post">post</a> and refers to the summary entered in the Excerpt field of the <strong><a href="https://codex.wordpress.org/Administration_Panels">Administration</a> &gt; <a href="https://codex.wordpress.org/Administration_Panels#Add_New_Post">Posts</a> &gt; <a href="https://codex.wordpress.org/Posts_Add_New_SubPanel">Add New SubPanel</a>.</strong>  The <em>excerpt</em> is used to describe your post in RSS feeds and is typically used in displaying search results. The <em>excerpt</em> is sometimes used in displaying the <strong>Archives</strong> and <a href="https://codex.wordpress.org/Glossary#Category">Category</a> views of your posts.  Use the <a href="https://codex.wordpress.org/Template_Tags">Template Tag</a> <a href="https://codex.wordpress.org/Template_Tags/the_excerpt">the_excerpt()</a>  to display the contents of this field.  Note that if you do not enter  information into the Excerpt field when writing a post, and you use <a href="https://codex.wordpress.org/Template_Tags/the_excerpt">the_excerpt()</a> in your theme template files, WordPress will automatically display the first 55 words of the <a href="https://codex.wordpress.org/Glossary#Post">post</a>'s content. </p>
1072<!-- /wp:paragraph -->
1073
1074<!-- wp:paragraph -->
1075<p>Un <strong>extrait</strong> est une description condensée de votre <a href="#article">article</a> de blog et fait référence au résumé entré dans le champ Extrait de <a href="/support/article/administration-screens/" data-type="URL" data-id="/support/article/administration-screens/">Administration</a>&nbsp;&gt; <a href="/support/article/administration-screens/">Articles</a>&nbsp;&gt; Ajouter un <a href="/support/article/writing-posts/">nouveau sous-panneau</a>. L’<em>extrait</em> est utilisé pour décrire votre article dans les flux RSS et est généralement utilisé pour afficher les résultats de recherche. L’<em>extrait</em> est parfois utilisé pour afficher les vues <strong>Archives</strong> et <a href="#catégorie" data-type="internal" data-id="#catégorie">Catégorie</a> de vos articles. Utilisez le <a href="#marqueur-de-mod%c3%a8le" data-type="internal" data-id="#marqueur-de-mod%c3%a8le">marqueur de modèle</a> <a href="https://developer.wordpress.org/reference/functions/the_excerpt/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/the_excerpt/">the_excerpt()</a> pour afficher le contenu de ce champ. Notez que si vous n’entrez pas d’informations dans le champ Extrait lors de la rédaction d’un article et que vous utilisez <a href="https://developer.wordpress.org/reference/functions/the_excerpt/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/the_excerpt/">the_excerpt()</a> dans vos fichiers de modèle de thème, WordPress affichera automatiquement les 55 premiers mots du <a href="#contenu" data-type="internal" data-id="#contenu">contenu</a> de l’article.</p>
1076<!-- /wp:paragraph -->
1077
1078<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1079<p class="has-pale-cyan-blue-background-color has-background">An <em>excerpt</em> should not be confused with the <strong>teaser</strong>, which refers to words before the <code>
1080&lt;!--more--&gt;
1081</code> in a <a href="https://codex.wordpress.org/Glossary#Post">post's</a> content. When typing a long post you can insert the <code>
1082&lt;!--more--&gt;
1083</code> <a href="https://codex.wordpress.org/Posts_Add_New_SubPanel#Visual_Versus_HTML_Editor">Quicktag</a> after a few sentences to act as a cut-off point.  When the post is displayed, the <strong>teaser</strong>, followed by a hyperlink (such as <strong>Read the rest of this entry...</strong>), is displayed.  Your visitor can then click on that link to see the full version of your <a href="https://codex.wordpress.org/Glossary#Post">post</a>. The <a href="https://codex.wordpress.org/Template_Tags">Template Tag</a>, <a href="https://codex.wordpress.org/Template_Tags/the_content">the_content()</a> should be used to display the teaser.
1084</p>
1085<!-- /wp:paragraph -->
1086
1087<!-- wp:paragraph -->
1088<p>Un <em>extrait</em> ne doit pas être confondu avec <strong>l’accroche</strong>, qui fait référence à des mots avant le <code> &lt;!--more--&gt; </code> dans le contenu d’un <a href="#article" data-type="internal" data-id="#article">article</a>. Lorsque vous tapez un long message, vous pouvez insérer le Quicktag<code> &lt;!--more--&gt; </code> après quelques phrases pour servir de point de coupure. Lorsque le message est affiché, <strong>l’accroche</strong>, suivi d’un lien hypertexte (tel que <strong>Lire le reste de cette entrée…</strong>), s’affiche. Votre visiteur peut ensuite cliquer sur ce lien pour voir la version complète de votre <a href="#article" data-type="internal" data-id="#article">article</a>. Le <a href="#marqueur-de-mod%c3%a8le" data-type="internal" data-id="#marqueur-de-mod%c3%a8le">marqueur de modèle</a>, <a href="https://codex.wordpress.org/Template_Tags/the_content" data-type="URL" data-id="https://codex.wordpress.org/Template_Tags/the_content">the_content()</a> doit être utilisée pour afficher l’accroche.</p>
1089<!-- /wp:paragraph -->
1090
1091<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
1092<ul class="has-pale-cyan-blue-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Customizing_the_Read_More">Customizing the Read More</a>, <a href="https://codex.wordpress.org/Excerpt">Excerpt</a></li></ul>
1093<!-- /wp:list -->
1094
1095<!-- wp:list -->
1096<ul><li>Articles en relation&nbsp;: <a href="https://fr.wordpress.org/support/article/excerpt/">Extrait</a>, <a href="https://codex.wordpress.org/Customizing_the_Read_More">Customizing the Read More</a> (en anglais)</li></ul>
1097<!-- /wp:list -->
1098
1099<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1100<p class="has-pale-cyan-blue-background-color has-background"><a href="https://codex.wordpress.org/Glossary#top">Back to the Top</a></p>
1101<!-- /wp:paragraph -->
1102
1103<!-- wp:paragraph -->
1104<p><a href="https://codex.wordpress.org/Glossary#top">Retour au début</a></p>
1105<!-- /wp:paragraph -->
1106
1107<!-- wp:heading -->
1108<h2>Flux</h2>
1109<!-- /wp:heading -->
1110
1111<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1112<p class="has-pale-cyan-blue-background-color has-background">A <strong>feed</strong> is a function of special software that allows  "Feedreaders" to access a site automatically looking for new content and  then posting the information about new content and updates to another  site. This provides a way for users to keep up with the latest and  hottest information posted on different blogging sites.  Some Feeds  include RSS (alternately defined as "Rich Site Summary" or "Really  Simple Syndication"), Atom or RDF files.  <s>Dave Shea, author of the web  design weblog <a href="http://mezzoblue.com">Mezzoblue</a> has written <a href="http://www.mezzoblue.com/archives/2004/05/19/what_is_rssx/">a comprehensive summary</a> of feeds.  Feeds generally are based on <a href="https://codex.wordpress.org/Glossary#XML">XML</a> technology. </s></p>
1113<!-- /wp:paragraph -->
1114
1115<!-- wp:paragraph -->
1116<p>Un <strong>flux</strong> est une fonction d’un logiciel spécial qui permet aux «&nbsp;lecteurs de flux&nbsp;» d’accéder à un site automatiquement à la recherche de nouveaux contenus, puis de publier les informations sur le nouveau contenu et les mises à jour sur un autre site. Cela permet aux utilisateurs de se tenir au courant des informations les plus récentes et les plus <span class="has-inline-color has-vivid-red-color">chaudes </span>publiées sur différents sites de blogs. Certains flux incluent des fichiers RSS (définis alternativement comme «&nbsp;Résumé riche du site&nbsp;» ou «&nbsp;Syndication vraiment simple&nbsp;»), Atom ou RDF. Les flux sont généralement basés sur la technologie <a href="#xml" data-type="internal" data-id="#xml">XML</a>.</p>
1117<!-- /wp:paragraph -->
1118
1119<!-- wp:paragraph {"backgroundColor":"pale-pink"} -->
1120<p class="has-pale-pink-background-color has-background"><strong>note du traducteur </strong>: la phrase ci desssous est supprimée, la source n’existe plus. <br>Dave Shea, author of the web design weblog <a href="http://mezzoblue.com">Mezzoblue</a> has written <a href="http://www.mezzoblue.com/archives/2004/05/19/what_is_rssx/">a comprehensive summary</a> of feeds.</p>
1121<!-- /wp:paragraph -->
1122
1123<!-- wp:heading -->
1124<h2>Lecteur de flux</h2>
1125<!-- /wp:heading -->
1126
1127<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1128<p class="has-pale-cyan-blue-background-color has-background">The role of Feedreader is to gather and display the webfeed from various website to one place.
1129</p>
1130<!-- /wp:paragraph -->
1131
1132<!-- wp:paragraph -->
1133<p>Le rôle du lecteur de flux est de rassembler et d’afficher le flux web de divers sites web à un seul endroit. </p>
1134<!-- /wp:paragraph -->
1135
1136<!-- wp:heading -->
1137<h2>Filtre</h2>
1138<!-- /wp:heading -->
1139
1140<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1141<p class="has-pale-cyan-blue-background-color has-background">In WordPress, a Filter is a <a href="http://www.w3schools.com/php/php_functions.asp">function</a> that is associated with an existing <a href="https://codex.wordpress.org/Glossary#Action">Action</a> by specifying any <a href="http://codex.wordpress.org/Plugin_API/Action_Reference">existing Hook</a>.
1142</p>
1143<!-- /wp:paragraph -->
1144
1145<!-- wp:paragraph -->
1146<p>Dans WordPress, un filtre est une <a href="http://www.w3schools.com/php/php_functions.asp" data-type="URL" data-id="http://www.w3schools.com/php/php_functions.asp">fonction</a> (en anglais) associée à une <a href="#action" data-type="internal" data-id="#action">action</a> existante en spécifiant un point d’accroche (ou <a href="#crochet" data-type="internal" data-id="#crochet">crochet</a>) existant.</p>
1147<!-- /wp:paragraph -->
1148
1149<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1150<p class="has-light-green-cyan-background-color has-background">Developers can create <a href="http://codex.wordpress.org/Function_Reference/add_filter"><strong>custom</strong> Filters</a> using the <a href="http://codex.wordpress.org/Plugin_API/Filter_Reference">Filter API</a> to <strong>replace</strong> code from an existing Action. This process is called "<a href="https://codex.wordpress.org/Glossary#Hook">hooking</a>".
1151</p>
1152<!-- /wp:paragraph -->
1153
1154<!-- wp:paragraph -->
1155<p>Les développeurs peuvent créer des <a href="https://developer.wordpress.org/reference/functions/add_filter/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/add_filter/">filtres personnalisés</a> (en anglais) à l’aide du <a href="https://codex.wordpress.org/Plugin_API/Filter_Reference" data-type="URL" data-id="https://codex.wordpress.org/Plugin_API/Filter_Reference">filtre de l’API</a> (en anglais) pour remplacer le code d’une action existante. Ce processus est appelé «&nbsp;<a href="#crochet" data-type="internal" data-id="#crochet">accrochage</a>&nbsp;».</p>
1156<!-- /wp:paragraph -->
1157
1158<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1159<p class="has-light-green-cyan-background-color has-background"><strong>Custom Filters differ from custom <em><a href="https://codex.wordpress.org/Glossary#Action">Actions</a></em></strong> because custom Actions allow you to <strong>add or remove</strong> code from existing Actions. Whereas custom Filters allow you to <strong>replace</strong> specific data (such as a variable) found within an existing Action.
1160</p>
1161<!-- /wp:paragraph -->
1162
1163<!-- wp:paragraph -->
1164<p><strong>Les filtres personnalisés diffèrent des <em><a href="#action" data-type="internal" data-id="#action">actions</a> </em>personnalisées</strong> car les actions personnalisées vous permettent d’<strong>ajouter ou de supprimer</strong> du code d’actions existantes. Alors que les filtres personnalisés vous permettent de <strong>remplacer</strong> des données spécifiques (telles qu’une variable) trouvées dans une action existante.</p>
1165<!-- /wp:paragraph -->
1166
1167<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
1168<ul class="has-pale-cyan-blue-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Action">Action</a>, <a href="https://codex.wordpress.org/Glossary#Hook">Hook</a>, <a href="https://codex.wordpress.org/Glossary#Terminology_Confusion">Terminology Confusion</a> </li><li> Related articles: <a href="https://codex.wordpress.org/Plugin_API#Filters">Filters</a>, <a href="https://codex.wordpress.org/Plugin_API/Filter_Reference">Filter Reference</a>, <a href="https://codex.wordpress.org/Function_Reference/add_filter">add_filter()</a></li></ul>
1169<!-- /wp:list -->
1170
1171<!-- wp:list -->
1172<ul><li>Voir aussi&nbsp;: <a href="#action" data-type="internal" data-id="#action">Action</a>, <a href="#crochet" data-type="internal" data-id="#crochet">Crochet</a>, <a href="#Confusion-terminologique" data-type="internal" data-id="#Confusion-terminologique">Confusion terminologique</a> </li><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Plugin_API#Filters">Filters</a>, <a href="https://codex.wordpress.org/Plugin_API/Filter_Reference">Filter Reference</a>, <a href="https://codex.wordpress.org/Function_Reference/add_filter">add_filter()</a> (les 3 en anglais)</li></ul>
1173<!-- /wp:list -->
1174
1175<!-- wp:heading {"backgroundColor":"light-green-cyan"} -->
1176<h2 class="has-light-green-cyan-background-color has-background">Footer area</h2>
1177<!-- /wp:heading -->
1178
1179<!-- wp:heading -->
1180<h2>Zone de pied de page</h2>
1181<!-- /wp:heading -->
1182
1183<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1184<p class="has-pale-cyan-blue-background-color has-background">A <strong>footer area</strong> is a horizontal area provided by a <a href="https://codex.wordpress.org/Glossary#Theme">theme</a> for displaying information other than the main <a href="https://codex.wordpress.org/Glossary#Content">content</a> of the web page. Themes may provide one or more footer areas below the content. Footer areas usually contain <a href="https://codex.wordpress.org/Glossary#Widget">widgets</a> that an administrator of the site can customize.
1185</p>
1186<!-- /wp:paragraph -->
1187
1188<!-- wp:paragraph -->
1189<p>Une <strong>zone de pied de page</strong> est une zone horizontale fournie par un <a href="#th%c3%a8me" data-type="internal">thème</a> pour afficher des informations autres que le <a href="#contenu" data-type="internal" data-id="#contenu">contenu</a> principal de la page web. Les thèmes peuvent fournir une ou plusieurs zones de pied de page sous le contenu. Les zones de pied de page contiennent généralement des <a href="#widget" data-type="internal" data-id="#widget">widgets</a> que l’administrateur du site peut personnaliser.</p>
1190<!-- /wp:paragraph -->
1191
1192<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
1193<p class="has-pale-cyan-blue-background-color has-background">In a theme, footer areas are generated by a <a href="https://codex.wordpress.org/Glossary#Template">template</a> file, typically named <em>sidebar-footer.php</em>.
1194</p>
1195<!-- /wp:paragraph -->
1196
1197<!-- wp:paragraph -->
1198<p>Dans un thème, les zones de pied de page sont générées par un fichier <a href="#mod%c3%a8le" data-type="internal" data-id="#mod%c3%a8le">modèle</a>, généralement nommé <em>sidebar-footer.php</em>.</p>
1199<!-- /wp:paragraph -->
1200
1201<!-- wp:list {"backgroundColor":"pale-cyan-blue"} -->
1202<ul class="has-pale-cyan-blue-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Sidebar">Sidebar</a></li><li> Related articles: <a href="https://codex.wordpress.org/Templates">Templates</a>, <a href="https://codex.wordpress.org/Customizing_Your_Sidebar">Customizing Your Sidebar</a>, <a href="https://codex.wordpress.org/Stepping_Into_Templates">Stepping Into Templates</a>, <a href="https://codex.wordpress.org/Template_Hierarchy">Template Hierarchy</a></li></ul>
1203<!-- /wp:list -->
1204
1205<!-- wp:list -->
1206<ul><li>Voir aussi&nbsp;: <a href="#colonne-lat%c3%a9rale" data-type="internal" data-id="#colonne-lat%c3%a9rale">Colonne latérale</a></li><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Templates">Templates</a>, <a href="https://codex.wordpress.org/Customizing_Your_Sidebar">Customizing Your Sidebar</a>, <a href="https://codex.wordpress.org/Stepping_Into_Templates">Stepping Into Templates</a>, <a href="https://codex.wordpress.org/Template_Hierarchy">Template Hierarchy</a> (les 4 en anglais).</li></ul>
1207<!-- /wp:list -->
1208
1209<!-- wp:heading -->
1210<h2>Interface publique</h2>
1211<!-- /wp:heading -->
1212
1213<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1214<p class="has-light-green-cyan-background-color has-background">The front end is what your visitors see and interact with when they come to your website, www.YourSite.com.
1215</p>
1216<!-- /wp:paragraph -->
1217
1218<!-- wp:paragraph -->
1219<p>L’interface publique est ce que vos visiteurs voient et avec lesquels ils interagissent lorsqu’ils accèdent à votre site Web, www.YourSite.com. </p>
1220<!-- /wp:paragraph -->
1221
1222<!-- wp:heading -->
1223<h2>FTP</h2>
1224<!-- /wp:heading -->
1225
1226<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1227<p class="has-light-green-cyan-background-color has-background"><strong>FTP</strong>, or <strong>File Transfer Protocol</strong>, is a client-server
1228protocol for transferring files. It is one way to download files, and
1229the most common way to upload files to a server.
1230</p>
1231<!-- /wp:paragraph -->
1232
1233<!-- wp:paragraph -->
1234<p><strong>FTP</strong>, ou <strong>File Transfer Protocol</strong>, est un protocole client-serveur pour le transfert de fichiers. C’est un moyen de télécharger des fichiers et le moyen le plus courant de téléverser des fichiers sur un serveur.</p>
1235<!-- /wp:paragraph -->
1236
1237<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1238<p class="has-light-green-cyan-background-color has-background">An FTP <em>client</em> is a program which can download files from, or upload files to, an FTP <em>server</em>.
1239</p>
1240<!-- /wp:paragraph -->
1241
1242<!-- wp:paragraph -->
1243<p>Un <em>client</em> FTP est un programme qui peut télécharger des fichiers depuis, ou téléverser des fichiers vers, un <em>serveur</em> FTP.</p>
1244<!-- /wp:paragraph -->
1245
1246<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1247<p class="has-light-green-cyan-background-color has-background">You may need to use an FTP client to upload your WordPress files to your <a href="https://codex.wordpress.org/Glossary#Web_server">web server</a>, particularly if you use a <a href="https://codex.wordpress.org/Glossary#Hosting_provider">hosting provider</a>.
1248</p>
1249<!-- /wp:paragraph -->
1250
1251<!-- wp:paragraph -->
1252<p>Vous devrez peut-être utiliser un client FTP pour télécharger vos fichiers WordPress sur votre <a href="#serveur-web" data-type="internal" data-id="#serveur-web">serveur Web</a>, en particulier si vous utilisez un <a href="#fournisseurs-d%e2%80%99h%c3%a9bergement" data-type="internal" data-id="#fournisseurs-d%e2%80%99h%c3%a9bergement">fournisseur d’hébergement</a>.</p>
1253<!-- /wp:paragraph -->
1254
1255<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
1256<ul class="has-light-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/FTP_Clients">FTP Clients</a>, <a href="https://codex.wordpress.org/Uploading_WordPress_to_a_remote_host">Uploading WordPress to a remote host</a>, <a href="https://codex.wordpress.org/Using_FileZilla">Using FileZilla</a></li></ul>
1257<!-- /wp:list -->
1258
1259<!-- wp:list -->
1260<ul><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/fr:Utiliser_un_Client_FTP" data-type="URL" data-id="https://codex.wordpress.org/fr:Utiliser_un_Client_FTP">Utilliser un Client FTP</a>, <a href="https://codex.wordpress.org/fr:Charger_WordPress_sur_un_serveur_distant" data-type="URL" data-id="https://codex.wordpress.org/fr:Charger_WordPress_sur_un_serveur_distant">Charger WordPress sur un serveur distant</a>, <strong>--- pages Codex, voir s’il n’existe pas des pages fr.wordpress ---</strong></li><li><a href="/support/article/using-filezilla/" data-type="URL" data-id="/support/article/using-filezilla/">Utiliser FileZilla</a>   <strong>-</strong></li></ul>
1261<!-- /wp:list -->
1262
1263<!-- wp:heading -->
1264<h2>Galerie</h2>
1265<!-- /wp:heading -->
1266
1267<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1268<p class="has-light-green-cyan-background-color has-background">As defined by Andy Skelton, <strong>Gallery</strong>, introduced with <a href="https://codex.wordpress.org/Version_2.5">WordPress 2.5</a>,
1269 is specifically an exposition of images attached to a post.  In that
1270same vein, an upload is "attached to a post" when you upload it while
1271editing a post.
1272</p>
1273<!-- /wp:paragraph -->
1274
1275<!-- wp:paragraph -->
1276<p>Tel que défini par Andy Skelton, la <strong>Galerie</strong>, introduit avec <a href="https://codex.wordpress.org/Version_2.5" data-type="URL" data-id="https://codex.wordpress.org/Version_2.5">WordPress 2.5</a>, est spécifiquement une exposition d’images attachées à un article. Dans la même veine, un téléchargement est «&nbsp;attaché à un message&nbsp;» lorsque vous le téléchargez lors de la modification d’un message.</p>
1277<!-- /wp:paragraph -->
1278
1279<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1280<p class="has-light-green-cyan-background-color has-background">In the uploader there is a "Gallery" tab that shows all the
1281uploads attached to the post you are editing. When you have more than
1282one attachment in a post, you should see at the bottom of the Gallery
1283tab a button marked "Insert gallery". That button inserts a shortcode
1284"[gallery]" into the post. WordPress replaces that shortcode with an
1285exposition of all images attached to that post. Non-image file types are
1286 excluded from the gallery.
1287</p>
1288<!-- /wp:paragraph -->
1289
1290<!-- wp:group -->
1291<div class="wp-block-group"><div class="wp-block-group__inner-container"><!-- wp:paragraph -->
1292<p>Dans l’outil de téléversement, il y a un onglet «&nbsp;<strong>Galerie</strong>&nbsp;» qui montre tous les téléchargements attachés à l’article que vous modifiez. Lorsque vous avez plus d’une pièce jointe dans un message, vous devriez voir en bas de l’onglet Galerie un bouton marqué «&nbsp;<strong>Insérer une galerie</strong>&nbsp;». Ce bouton insère un code court «&nbsp;<code>[galery]</code>&nbsp;» dans le message. WordPress remplace ce code court par une exposition de toutes les images attachées à ce message. Les types de fichiers qui ne sont pas des fichiers d’image sont exclus de la galerie. </p>
1293<!-- /wp:paragraph --></div></div>
1294<!-- /wp:group -->
1295
1296<!-- wp:group -->
1297<div class="wp-block-group"><div class="wp-block-group__inner-container"></div></div>
1298<!-- /wp:group -->
1299
1300<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1301<p class="has-light-green-cyan-background-color has-background">Note: If you don't see the "Insert gallery" button, it may be because you have not attached two images to the post.
1302</p>
1303<!-- /wp:paragraph -->
1304
1305<!-- wp:paragraph -->
1306<p>Remarque&nbsp;: Si vous ne voyez pas le bouton «&nbsp;Insérer une galerie&nbsp;», c’est peut-être parce que vous n’avez pas joint deux images à l’article.. </p>
1307<!-- /wp:paragraph -->
1308
1309<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1310<p class="has-light-green-cyan-background-color has-background">The pretty URLs for attachments are made only after you have published the post and should be composed as the post <a href="https://codex.wordpress.org/Glossary#permalink">permalink</a> plus the attachment <a href="https://codex.wordpress.org/Glossary#slug">slug</a>.
1311</p>
1312<!-- /wp:paragraph -->
1313
1314<!-- wp:paragraph -->
1315<p>Les jolies URL pour les pièces jointes ne sont créées qu’après avoir publié le message et doivent être composées comme <a href="#permalien" data-type="internal" data-id="#permalien">permalien</a> du message plus le <a href="#slug" data-type="internal" data-id="#slug">slug</a> de la pièce jointe.</p>
1316<!-- /wp:paragraph -->
1317
1318<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
1319<ul class="has-light-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Gallery_Shortcode">Gallery Shortcode</a>, <a href="https://codex.wordpress.org/Shortcode_API">Shortcode API</a></li></ul>
1320<!-- /wp:list -->
1321
1322<!-- wp:list -->
1323<ul><li>Article en relation&nbsp;: <a href="https://codex.wordpress.org/Gallery_Shortcode">Gallery Shortcode</a>, <a href="https://codex.wordpress.org/Shortcode_API">Shortcode API</a></li></ul>
1324<!-- /wp:list -->
1325
1326<!-- wp:heading -->
1327<h2>gettext</h2>
1328<!-- /wp:heading -->
1329
1330<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1331<p class="has-light-green-cyan-background-color has-background">The <strong>gettext</strong> system is a set of tools and standards for
1332language translation, used by WordPress to provide versions in many
1333languages. In WordPress a text string for translation may have a domain
1334and a context. For example, a plugin might specify its own domain for
1335translations, and a context might help translators to provide different
1336translations of the same English word or phrase in different parts of
1337the user interface.
1338</p>
1339<!-- /wp:paragraph -->
1340
1341<!-- wp:paragraph -->
1342<p>Le système <strong>gettext</strong> est un ensemble d’outils et de normes de traduction de langue, utilisé par WordPress pour fournir des versions dans de nombreuses langues. Dans WordPress, une chaîne de texte pour la traduction peut avoir un domaine et un contexte. Par exemple, une extension peut spécifier son propre domaine pour les traductions, et un contexte peut aider les traducteurs à fournir différentes traductions du même mot ou phrase anglais dans différentes parties de l’interface utilisateur.</p>
1343<!-- /wp:paragraph -->
1344
1345<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
1346<ul class="has-light-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/WordPress_in_Your_Language">WordPress in Your Language</a>, <a href="https://codex.wordpress.org/Translating_WordPress">Translating WordPress</a>, <a href="https://codex.wordpress.org/I18n_for_WordPress_Developers">I18n for WordPress Developers</a></li><li> External links: <a href="http://en.wikipedia.org/wiki/Gettext">gettext</a> (Wikipedia), <a href="http://www.gnu.org/software/gettext/gettext.html">GNU gettext</a></li></ul>
1347<!-- /wp:list -->
1348
1349<!-- wp:list -->
1350<ul><li>Articles en relation&nbsp;: <a href="https://fr.wordpress.org/support/article/installing-wordpress-in-your-language/" data-type="URL" data-id="https://fr.wordpress.org/support/article/installing-wordpress-in-your-language/">Installer WordPress dans votre langue</a></li><li><a href="https://codex.wordpress.org/WordPress_in_Your_Language">WordPress in Your Language</a>, <a href="https://codex.wordpress.org/Translating_WordPress">Translating WordPress</a>, <a href="https://codex.wordpress.org/I18n_for_WordPress_Developers">I18n for WordPress Developers</a> (les 3 en anglais)</li><li>Liens externes&nbsp;: <a href="https://fr.wikipedia.org/wiki/GNU_gettext" data-type="URL" data-id="https://fr.wikipedia.org/wiki/GNU_gettext">gettext</a> (Wikipedia Fr), <a href="http://www.gnu.org/software/gettext/gettext.html">GNU gettext</a> (en anglais)</li></ul>
1351<!-- /wp:list -->
1352
1353<!-- wp:heading -->
1354<h2>GMT</h2>
1355<!-- /wp:heading -->
1356
1357<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1358<p class="has-vivid-green-cyan-background-color has-background"><strong>GMT</strong> ("Greenwich Mean Time", the time at the Royal Observatory
1359in Greenwich, England) is the old name of the time zone from which all
1360other time zones were measured. It has been replaced by <a href="https://codex.wordpress.org/Glossary#UTC">UTC</a>
1361 ("Universal Time, Coordinated"), but for most practical purposes UTC
1362and GMT are the same, so the term GMT is still commonly used.
1363</p>
1364<!-- /wp:paragraph -->
1365
1366<!-- wp:paragraph -->
1367<p><strong>GMT </strong>&nbsp;<strong>G</strong>reenwich <strong>M</strong>ean <strong>T</strong>ime&nbsp;», l’heure de l’Observatoire royal de Greenwich, en Angleterre) est l’ancien nom du fuseau horaire à partir duquel tous les autres fuseaux horaires ont été mesurés. Il a été remplacé par <a href="#utc" data-type="internal" data-id="#utc">UTC</a> («&nbsp;<strong>U</strong>niversal <strong>T</strong>ime, <strong>C</strong>oordinated&nbsp;»), mais pour la plupart des raisons pratiques, UTC et GMT sont les mêmes, de sorte que le terme GMT est encore couramment utilisé.</p>
1368<!-- /wp:paragraph -->
1369
1370<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1371<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/Greenwich_Mean_Time">Greenwich Mean Time</a>, <a href="http://en.wikipedia.org/wiki/Time_zone">Time zone</a>, <a href="http://en.wikipedia.org/wiki/Coordinated_Universal_Time">UTC</a> (Wikipedia)</li></ul>
1372<!-- /wp:list -->
1373
1374<!-- wp:list -->
1375<ul><li>Liens externes&nbsp;: <a href="https://fr.wikipedia.org/wiki/Temps_moyen_de_Greenwich" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Temps_moyen_de_Greenwich">Temps moyen de Greenwich</a>, <a href="https://fr.wikipedia.org/wiki/Temps_universel_coordonn%C3%A9" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Temps_universel_coordonn%C3%A9"><strong>T</strong>emps <strong>U</strong>niversel <strong>C</strong>oordonné UTC</a> (Wikipedia Fr), <a href="http://en.wikipedia.org/wiki/Time_zone">Time zone</a> (en anglais).</li></ul>
1376<!-- /wp:list -->
1377
1378<!-- wp:heading -->
1379<h2>Gravatar</h2>
1380<!-- /wp:heading -->
1381
1382<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1383<p class="has-vivid-green-cyan-background-color has-background">A <strong>gravatar</strong> is a globally recognized <a href="https://codex.wordpress.org/Glossary#Avatar">avatar</a>
1384 (a graphic image or picture that represents a user). Typically a user's
1385 gravatar is associated with their email address, and using a service
1386such as <a href="http://en.gravatar.com/">Gravatar.com</a>. The site owner to can configure their site so that a user's gravatar is displayed along with their comments.
1387</p>
1388<!-- /wp:paragraph -->
1389
1390<!-- wp:paragraph -->
1391<p>Un <strong>gravatar</strong> est un <a href="#avatar" data-type="internal" data-id="#avatar">avatar</a> mondialement reconnu (une image graphique ou une image représentant un utilisateur). Le gravatar d’un utilisateur est généralement associé à son adresse e-mail et utilise un service tel que <a href="http://fr.gravatar.com/" data-type="URL" data-id="http://fr.gravatar.com/">Gravatar.com</a>. Le propriétaire du site peut configurer son site pour que le gravatar d’un utilisateur s’affiche avec ses commentaires.</p>
1392<!-- /wp:paragraph -->
1393
1394<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1395<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Avatar">Avatar</a>     <span class="has-inline-color has-vivid-red-color"></span></li><li> Related articles: <a href="https://codex.wordpress.org/How_to_Use_Gravatars_in_WordPress">How to Use Gravatars in WordPress</a>, <a href="https://codex.wordpress.org/Using_Gravatars">Using Gravatars</a></li><li> External links: <a href="http://en.wikipedia.org/wiki/Gravatar">Gravatar at Wikipedia</a></li></ul>
1396<!-- /wp:list -->
1397
1398<!-- wp:list -->
1399<ul><li>Voir aussi&nbsp;: <a href="#avatar" data-type="internal" data-id="#avatar">Avatar</a>   <span class="has-inline-color has-vivid-red-color">lien sans intérêt puisqu’il renvoie à ce paragraphe.</span> <span class="has-inline-color has-vivid-red-color">Patrice</span></li><li>Articles en relation&nbsp;: <a href="/support/article/how-to-use-gravatars/" data-type="URL" data-id="/support/article/how-to-use-gravatars/">Comment utiliser les gravatars WordPress</a>, <a href="https://codex.wordpress.org/Using_Gravatars">Using Gravatars</a> (en anglais)</li><li>Liens externe&nbsp;: <a href="http://fr.wikipedia.org/wiki/Gravatar" data-type="URL" data-id="http://fr.wikipedia.org/wiki/Gravatar">Gravatar sur Wikipedia</a></li></ul>
1400<!-- /wp:list -->
1401
1402<!-- wp:heading -->
1403<h2>GUI</h2>
1404<!-- /wp:heading -->
1405
1406<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1407<p class="has-vivid-green-cyan-background-color has-background">GUI stands for Graphical User Interface, pronounced as "gooey". It is
1408 an interface that allows users to point the mouse or cursor to
1409graphical icons.
1410</p>
1411<!-- /wp:paragraph -->
1412
1413<!-- wp:paragraph -->
1414<p>GUI signifie <strong>U</strong>tilisateur <strong>G</strong>raphique <strong>I</strong>nterface (en traduction litérale), prononcé comme «&nbsp;gluant&nbsp;». C’est une interface qui permet aux utilisateurs de pointer la souris ou le curseur sur des icônes graphiques.</p>
1415<!-- /wp:paragraph -->
1416
1417<!-- wp:heading -->
1418<h2>Gutenberg</h2>
1419<!-- /wp:heading -->
1420
1421<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1422<p class="has-vivid-green-cyan-background-color has-background">Gutenberg is newly developed, block-oriented editor. It uses blocks
1423to create all types of content, replacing a half-dozen inconsistent ways
1424 of customizing WordPress, bringing it in line with modern coding
1425standards, and aligning with open web initiatives. These content blocks
1426transform how users, developers, and hosts interact with WordPress to
1427make building rich web content easier and more intuitive, democratizing
1428publishing — and work — for everyone, regardless of technical ability.
1429</p>
1430<!-- /wp:paragraph -->
1431
1432<!-- wp:paragraph -->
1433<p>Gutenberg est un éditeur orienté «&nbsp;bloc&nbsp;» récemment développé. Il utilise des blocs pour créer tous les types de contenu, remplaçant une demi-douzaine de façons incohérentes pour personnaliser WordPress, en le mettant en conformité avec les normes de codage modernes et en s’alignant sur les initiatives Web ouvertes. Ces blocs de contenu transforment la façon dont les utilisateurs, les développeurs et les hôtes interagissent avec WordPress pour rendre la création de contenu Web riche plus facile et plus intuitive, démocratisant la publication - et le travail - pour tout le monde, quelle que soit la capacité technique.</p>
1434<!-- /wp:paragraph -->
1435
1436<!-- wp:heading -->
1437<h2>Hack</h2>
1438<!-- /wp:heading -->
1439
1440<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1441<p class="has-vivid-green-cyan-background-color has-background">A <strong>hack</strong> is a bit of code written to customize or extend the
1442functionality of a software product. Older versions of WordPress used a
1443hack-based extension system, but versions <a href="https://codex.wordpress.org/Changelog/1.2">1.2</a> and above of WordPress use a <a href="https://codex.wordpress.org/Plugin_API">Plugin API</a> with <a href="https://codex.wordpress.org/Glossary#Hook">hooks</a> for extensions.
1444</p>
1445<!-- /wp:paragraph -->
1446
1447<!-- wp:paragraph -->
1448<p>Une <strong>hack</strong> est un morceau de code écrit pour personnaliser ou étendre les fonctionnalités d’un logiciel. Les versions plus anciennes de WordPress utilisaient un système d’extension basé sur le <a href="https://fr.wikipedia.org/wiki/Hack" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Hack">hack</a>, mais les versions <a href="https://codex.wordpress.org/Changelog/1.2" data-type="URL" data-id="https://codex.wordpress.org/Changelog/1.2">1.2</a> et supérieures de WordPress utilisent une <a href="https://codex.wordpress.org/fr:Plugin_API" data-type="URL" data-id="https://codex.wordpress.org/fr:Plugin_API">extension API</a> avec des <a href="#crochet" data-type="internal" data-id="#crochet">crochets</a> pour les extensions.</p>
1449<!-- /wp:paragraph -->
1450
1451<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1452<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Hacking">Hacking</a>, <a href="https://codex.wordpress.org/Glossary#Plugin">Plugin</a></li><li> Related articles: <a href="https://codex.wordpress.org/Changelog">Changelog</a>, <a href="https://codex.wordpress.org/Plugin_API">Plugin API</a></li><li> External links: <a href="http://en.wikipedia.org/wiki/Open_source">Open source at Wikipedia</a></li></ul>
1453<!-- /wp:list -->
1454
1455<!-- wp:list -->
1456<ul><li>Voir aussi&nbsp;: <a href="#hacking" data-type="internal" data-id="#hacking">Hacking</a>, <a href="#extension" data-type="internal" data-id="#extension">Extension</a>   <span class="has-inline-color has-vivid-red-color"></span></li><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Changelog">Changelog</a>, <a href="https://codex.wordpress.org/fr:Plugin_API">Plugin API</a> (en anglais)</li><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Open_source" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Open_source">Open source sur Wikipedia</a>, <a href="https://fr.wikipedia.org/wiki/Hack">Hack sur fr.wikipédia.org</a> ajout des liens vers hack sur fr.wikipedia.org Patrice</li></ul>
1457<!-- /wp:list -->
1458
1459<!-- wp:heading -->
1460<h2>Hacking</h2>
1461<!-- /wp:heading -->
1462
1463<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1464<p class="has-vivid-green-cyan-background-color has-background"><strong>Hacking</strong> is the process of writing code for, or contributing code to, a piece of software.
1465</p>
1466<!-- /wp:paragraph -->
1467
1468<!-- wp:paragraph -->
1469<p>Le <strong>Hacking</strong> est le processus d'écriture de code pour un logiciel ou de contribution à un code.</p>
1470<!-- /wp:paragraph -->
1471
1472<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1473<p class="has-vivid-green-cyan-background-color has-background">There is some controversy surrounding the meaning of this term.
1474It began as a benign term meaning "to exercise proficiency" or "to alter
1475 or improve," but the popular media have since construed it to mean "to
1476break into a computer system, usually with malicious intent." Many in
1477the computer industry have recently begun trying to 'take back' the word
1478 from its popular mutation, and many have adopted the term <em>cracking</em>
1479 to replace the malicious interpretation. Because of the desire to
1480reclaim the word, you will often find the term used in conjunction with <a href="http://en.wikipedia.org/wiki/Open_source">open source</a> projects, intended in its benign form. For more information about the history of the term, please see <a href="http://en.wikipedia.org/wiki/Hacker">Wikipedia's article on <em>Hacker</em></a>.
1481</p>
1482<!-- /wp:paragraph -->
1483
1484<!-- wp:paragraph -->
1485<p>Il y a une certaine controverse autour de la signification de ce terme. Il a commencé comme un terme bénin signifiant «&nbsp;exercer ses compétences&nbsp;» ou «&nbsp;modifier ou améliorer&nbsp;», mais les médias populaires l’ont depuis interprété comme signifiant «&nbsp;s’introduire dans un système informatique, généralement avec une intention malveillante&nbsp;». Beaucoup dans l’industrie informatique ont récemment commencé à essayer de «&nbsp;reprendre&nbsp;» le mot de sa mutation populaire, et beaucoup ont adopté le terme <strong>cracking</strong> pour remplacer l’interprétation malveillante. En raison du désir de récupérer le mot, vous trouverez souvent le terme utilisé en conjonction avec des projets <a href="https://fr.wikipedia.org/wiki/Open_source" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Open_source">open source</a>, destinés dans sa forme bénigne. Pour plus d’informations sur l’histoire du terme <em>Hacker</em>, veuillez consulter l’article sur <a href="https://fr.wikipedia.org/wiki/Hacker" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Hacker">fr.Wikipedia.org</a>  et sur <a href="http://en.wikipedia.org/wiki/Hacker" data-type="URL" data-id="http://en.wikipedia.org/wiki/Hacker">en.wikipedia.org</a>.</p>
1486<!-- /wp:paragraph -->
1487
1488<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1489<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Hack">Hack</a></li><li> Related articles: <a href="https://codex.wordpress.org/Plugins">Plugins</a></li></ul>
1490<!-- /wp:list -->
1491
1492<!-- wp:list -->
1493<ul><li>Voir aussi&nbsp;: <a href="#hack" data-type="internal" data-id="#hack">Hack</a></li><li>Article en relation : <a href="/support/article/plugins/" data-type="URL" data-id="/support/article/plugins/">Extensions</a></li></ul>
1494<!-- /wp:list -->
1495
1496<!-- wp:heading -->
1497<h2>Image d’en-tête</h2>
1498<!-- /wp:heading -->
1499
1500<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1501<p class="has-light-green-cyan-background-color has-background">A <strong>Header Image</strong> is a wide picture that appears at the top of a WordPress website.
1502</p>
1503<!-- /wp:paragraph -->
1504
1505<!-- wp:paragraph -->
1506<p>Une <strong>image d’en-tête</strong> est une image large qui apparaît en haut d’un site Web WordPress. </p>
1507<!-- /wp:paragraph -->
1508
1509<!-- wp:heading -->
1510<h2>Crochet</h2>
1511<!-- /wp:heading -->
1512
1513<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1514<p class="has-vivid-green-cyan-background-color has-background">Hooks are specified, by the developer, in Actions and Filters. Here is a (hopefully) complete list of all <a href="http://codex.wordpress.org/Plugin_API/Action_Reference">existing Hooks</a> within WordPress.
1515</p>
1516<!-- /wp:paragraph -->
1517
1518<!-- wp:paragraph -->
1519<p>Les crochets sont spécifiés, par le développeur, dans Actions et Filtres. Voici une liste complète (espérons-le) de tous les <a href="https://codex.wordpress.org/Plugin_API/Action_Reference" data-type="URL" data-id="https://codex.wordpress.org/Plugin_API/Action_Reference">Crochets existants</a> (en anglais) dans WordPress.</p>
1520<!-- /wp:paragraph -->
1521
1522<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1523<p class="has-vivid-green-cyan-background-color has-background">Because Hooks are required by Actions and Filter you may hear the
1524 phrase "Action Hooks" and "Filter Hooks" used from time to time.
1525</p>
1526<!-- /wp:paragraph -->
1527
1528<!-- wp:paragraph -->
1529<p>Comme les Crochets sont requis par les Actions et le Filtre, vous pouvez entendre les expressions «&nbsp;Crochets Action&nbsp;» et «&nbsp;Crochets Filtre&nbsp;» utilisées de temps en temps.</p>
1530<!-- /wp:paragraph -->
1531
1532<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1533<p class="has-vivid-green-cyan-background-color has-background">In technical and strict terms: a Hook is an event, i.e. event as understood by <a href="http://en.wikipedia.org/wiki/Observer_pattern">Observer pattern</a>, invoked by the <a href="https://codex.wordpress.org/Function_Reference/do_action">do_action()</a> or <a href="https://codex.wordpress.org/Function_Reference/apply_filters">apply_filters()</a> call that afterwards triggers all the <a href="https://codex.wordpress.org/Glossary#Action">action</a> or <a href="https://codex.wordpress.org/Glossary#Filter">filter</a> functions, previously hooked to that event using <a href="https://codex.wordpress.org/Function_Reference/add_action">add_action()</a> or <a href="https://codex.wordpress.org/Function_Reference/add_filter">add_filter()</a>, respectively.
1534</p>
1535<!-- /wp:paragraph -->
1536
1537<!-- wp:paragraph -->
1538<p>En termes techniques et stricts&nbsp;: un Crochet est un événement, c’est-à-dire un événement tel que compris par le <a href="https://en.wikipedia.org/wiki/Observer_pattern" data-type="URL" data-id="https://en.wikipedia.org/wiki/Observer_pattern">modèle d’observateur</a> (en anglais), invoqué par l’appel <a href="https://developer.wordpress.org/reference/functions/do_action/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/do_action/">do_action()</a> ou <a href="https://developer.wordpress.org/reference/functions/apply_filters/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/apply_filters/">apply_filters()</a> qui déclenche ensuite toutes les fonctions d’<a href="#action" data-type="internal" data-id="#action">action</a> ou de <a href="#filtre" data-type="internal" data-id="#filtre">filtre</a>, précédemment accrochées à cet événement en utilisant <a href="https://developer.wordpress.org/reference/functions/add_action/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/add_action/">add_action()</a> ou <a href="https://developer.wordpress.org/reference/functions/add_filter/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/add_filter/">add_filter()</a>, respectivement.</p>
1539<!-- /wp:paragraph -->
1540
1541<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1542<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Action">Action</a>, <a href="https://codex.wordpress.org/Glossary#Filter">Filter</a></li><li> Related articles: <a href="https://codex.wordpress.org/Plugin_API#Hooks.2C_Actions_and_Filters">Hooks, Actions and Filters</a>, <a href="https://codex.wordpress.org/Plugin_API/Hooks">Plugin API/Hooks</a></li></ul>
1543<!-- /wp:list -->
1544
1545<!-- wp:list -->
1546<ul><li>Voir aussi&nbsp;: <a href="#action" data-type="internal" data-id="#action">Action</a>, <a href="#filtre" data-type="internal" data-id="#filtre">Filtre</a></li><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/fr:Plugin_API" data-type="URL" data-id="https://codex.wordpress.org/fr:Plugin_API">Hooks, Actions and Filters</a>, <a href="https://codex.wordpress.org/Plugin_API/Hooks" data-type="URL" data-id="https://codex.wordpress.org/Plugin_API/Hooks">Plugin API/Hooks</a> (en anglais)</li></ul>
1547<!-- /wp:list -->
1548
1549<!-- wp:heading {"level":3} -->
1550<h3>Confusion terminologique</h3>
1551<!-- /wp:heading -->
1552
1553<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1554<p class="has-vivid-green-cyan-background-color has-background">WordPress Codex and source code comments sometimes confuse the terms "<a href="http://codex.wordpress.org/Glossary#Action">actions</a>/<a href="http://codex.wordpress.org/Glossary#Filter">filters</a>" and "<a href="http://codex.wordpress.org/Glossary#Hook">hooks</a>".
1555</p>
1556<!-- /wp:paragraph -->
1557
1558<!-- wp:paragraph -->
1559<p>Les commentaires du Codex WordPress et du code source confondent parfois les termes «&nbsp;<a href="#action" data-type="internal" data-id="#action">actions</a>/<a href="#filtre" data-type="internal" data-id="#filtre">filtres</a>&nbsp;» et «&nbsp;<a href="#crochet" data-type="internal" data-id="#crochet">crochet</a>&nbsp;».</p>
1560<!-- /wp:paragraph -->
1561
1562<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1563<p class="has-vivid-green-cyan-background-color has-background">Actions, Filters and Hooks are also occasionally referred to as "action/filter hooks" or "action/filter/hook functions".
1564</p>
1565<!-- /wp:paragraph -->
1566
1567<!-- wp:paragraph -->
1568<p>Les actions, les filtres et les crochets sont aussi parfois appelés «&nbsp;crochets actions/filtres&nbsp;» ou «&nbsp;fonctions action/filtre/crochet&nbsp;».</p>
1569<!-- /wp:paragraph -->
1570
1571<!-- wp:heading -->
1572<h2>Fournisseurs d’hébergement</h2>
1573<!-- /wp:heading -->
1574
1575<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
1576<p class="has-light-green-cyan-background-color has-background">A <strong>hosting provider</strong> is a company or organization which  provides, usually for a fee, infrastructure for making information  accessible via the web. This involves the use of a <a href="https://wordpress.org/support/article/glossary/#web-server">web server</a> (including web server software such as <a href="https://codex.wordpress.org/Glossary#Apache">Apache</a>), and may involve one or more related technologies, such as <a href="https://codex.wordpress.org/Glossary#FTP">FTP</a>, <a href="https://codex.wordpress.org/Glossary#PHP">PHP</a>, <a href="https://codex.wordpress.org/Glossary#MySQL">MySQL</a> or <a href="https://codex.wordpress.org/Glossary#MariaDB">MariaDB</a>, and operating system software such as <a href="https://codex.wordpress.org/Glossary#Linux">Linux</a> or <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a>. </p>
1577<!-- /wp:paragraph -->
1578
1579<!-- wp:paragraph -->
1580<p>Un <strong>fournisseur d’hébergement</strong> est une entreprise ou une organisation qui fournit, généralement moyennant des frais, une infrastructure pour rendre les informations accessibles via le Web. Cela implique l’utilisation d’un <a href="#serveur-web" data-type="internal" data-id="#serveur-web">serveur Web</a> (y compris un logiciel de serveur Web tel qu’<a href="#apache" data-type="internal" data-id="#apache">Apache</a>) et peut impliquer une ou plusieurs technologies associées, telles que <a href="#ftp" data-type="internal" data-id="#ftp">FTP</a>, <a href="#php" data-type="internal" data-id="#php">PHP</a>, <a href="#mysql" data-type="internal" data-id="#mysql">MySQL</a> ou <a href="#mariadb" data-type="internal" data-id="#mariadb">MariaDB</a>, et des logiciels de système d’exploitation tels que <a href="#linux" data-type="internal" data-id="#linux">Linux</a> ou <a href="#unix" data-type="internal" data-id="#unix">Unix</a>.</p>
1581<!-- /wp:paragraph -->
1582
1583<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
1584<ul class="has-light-green-cyan-background-color has-background"><li> Related articles: <a href="https://wordpress.org/about/requirements/">Hosting WordPress</a></li></ul>
1585<!-- /wp:list -->
1586
1587<!-- wp:list -->
1588<ul><li>Articles en relation&nbsp;: <a href="/about/requirements/" data-type="URL" data-id="/about/requirements/">Prérequis WordPress</a></li></ul>
1589<!-- /wp:list -->
1590
1591<!-- wp:heading -->
1592<h2>.htaccess</h2>
1593<!-- /wp:heading -->
1594
1595<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1596<p class="has-vivid-green-cyan-background-color has-background">A <strong>.htaccess</strong> file is a granular configuration file for the <a href="https://codex.wordpress.org/Glossary#Apache">Apache</a> <a href="https://codex.wordpress.org/Glossary#Web_server">web server</a>
1597 software, used to set or alter the server's configuration settings for
1598the directory in which it is present, and/or its child directories.
1599</p>
1600<!-- /wp:paragraph -->
1601
1602<!-- wp:paragraph -->
1603<p>Un fichier <strong>.htaccess</strong> est un fichier de configuration granulaire pour le logiciel <a href="#apache" data-type="internal" data-id="#apache">Apache</a> du <a href="#serveur-web" data-type="internal" data-id="#serveur-web">serveur Web</a> , utilisé pour définir ou modifier les paramètres de configuration du serveur pour le répertoire dans lequel il est présent et/ou ses répertoires enfants.</p>
1604<!-- /wp:paragraph -->
1605
1606<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1607<p class="has-vivid-green-cyan-background-color has-background">WordPress uses an <em>.htaccess</em> file in conjunction with the <a href="https://codex.wordpress.org/Glossary#mod_rewrite">mod_rewrite</a> <a href="https://codex.wordpress.org/Glossary#Apache">Apache</a> module to produce <a href="https://codex.wordpress.org/Glossary#Permalink">permalinks</a>.
1608</p>
1609<!-- /wp:paragraph -->
1610
1611<!-- wp:paragraph -->
1612<p>WordPress utilise un fichier <em>.htaccess</em> en conjonction avec le module <a href="#mod_rewrite" data-type="internal" data-id="#mod_rewrite">mod_rewrite</a> d’<a href="#apache" data-type="internal" data-id="#apache">Apache</a> pour produire des <a href="#permalien" data-type="internal" data-id="#permalien">permaliens</a>.</p>
1613<!-- /wp:paragraph -->
1614
1615<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1616<p class="has-vivid-green-cyan-background-color has-background">Note that <em>.htaccess</em> is a <em>hidden file</em> in <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a>/<a href="https://codex.wordpress.org/Glossary#Linux">Linux</a> (as dictated by the preceding period '.'), meaning it may not be visible using the default settings of some <a href="https://codex.wordpress.org/FTP_Clients">FTP clients</a>.
1617</p>
1618<!-- /wp:paragraph -->
1619
1620<!-- wp:paragraph -->
1621<p>Notez que <em>.htaccess</em> est un fichier caché sous <a href="#unix" data-type="internal" data-id="#unix">Unix</a>/<a href="http://linux" data-type="URL" data-id="linux">Linux</a> (tel que dicté par le point précédent '.'), Ce qui signifie qu'il peut ne pas être visible en utilisant les paramètres par défaut de certains <a href="/support/article/ftp-clients/" data-type="URL" data-id="/support/article/ftp-clients/">clients FTP</a>.</p>
1622<!-- /wp:paragraph -->
1623
1624<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1625<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#chmod">chmod</a></li><li> Related articles: <a href="https://codex.wordpress.org/htaccess_for_subdirectories">htaccess for subdirectories</a>, <a href="https://codex.wordpress.org/Using_Permalinks">Using Permalinks</a>, <a href="https://codex.wordpress.org/UNIX_Shell_Skills">UNIX Shell Skills</a>, <a href="https://codex.wordpress.org/Changing_File_Permissions">Changing File Permissions</a></li></ul>
1626<!-- /wp:list -->
1627
1628<!-- wp:list -->
1629<ul><li>Voir aussi&nbsp;: <a href="#chmod" data-type="internal" data-id="#chmod">chmod</a></li><li>Articles en relation&nbsp;: <ul><li><a href="/support/article/htaccess/" data-type="URL" data-id="/support/article/htaccess/">htaccess</a> lien ajouté / Patrice</li><li><a href="/support/article/using-permalinks/" data-type="URL" data-id="/support/article/using-permalinks/">Utilisation des permaliens</a>, <a href="/support/article/changing-file-permissions/" data-type="URL" data-id="/support/article/changing-file-permissions/">Régler les permissions de fichiers</a>, </li><li><a href="https://codex.wordpress.org/htaccess_for_subdirectories">htaccess for subdirectories</a>, <a href="https://codex.wordpress.org/UNIX_Shell_Skills">UNIX Shell Skills</a> (en anglais)</li></ul></li></ul>
1630<!-- /wp:list -->
1631
1632<!-- wp:heading -->
1633<h2>HTML</h2>
1634<!-- /wp:heading -->
1635
1636<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1637<p class="has-vivid-green-cyan-background-color has-background"><strong>HTML</strong>, or <strong>Hypertext Markup Language</strong>, is a markup language used to describe the semantic content of web pages. It is usually used with <a href="https://codex.wordpress.org/Glossary#CSS">CSS</a> and/or <a href="https://codex.wordpress.org/Glossary#JavaScript">JavaScript</a>. WordPress renders web pages to conform to the HTML5 standard. The standard is set by the World Wide Web Consortium (<a href="http://www.w3.org">W3C</a>).
1638</p>
1639<!-- /wp:paragraph -->
1640
1641<!-- wp:paragraph -->
1642<p><strong>HTML, </strong>ou <strong>Hypertext Markup Language</strong>, est un langage de balisage utilisé pour décrire le contenu sémantique des pages Web. Il est généralement utilisé avec <a href="#css" data-type="internal" data-id="#css">CSS</a> et/ou <a href="#javascript" data-type="internal" data-id="#javascript">JavaScript</a>. WordPress rend les pages Web conformes à la norme HTML5. La norme est établie par le <strong>W</strong>orld <strong>W</strong>ide <strong>W</strong>eb <strong>C</strong>onsortium (<a href="http://www.w3.org" data-type="URL" data-id="http://www.w3.org">W3C</a>).</p>
1643<!-- /wp:paragraph -->
1644
1645<!-- wp:heading -->
1646<h2>Adresse IP</h2>
1647<!-- /wp:heading -->
1648
1649<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1650<p class="has-vivid-green-cyan-background-color has-background">An <strong>IP address</strong> is a unique number (e.g. <em>70.84.29.148</em>)
1651assigned to a computer (or other internet-capable information appliance,
1652 such as a network printer) to enable it to communicate with other
1653devices using the <em>Internet Protocol</em>. It is a computer's identity
1654on the internet, and every computer connected to the internet is
1655assigned at least one — although the methods of assigning these
1656addresses, and the permanence and duration of their assignment, differ
1657according to the use of the computer and the circumstances of its
1658internet use.
1659</p>
1660<!-- /wp:paragraph -->
1661
1662<!-- wp:paragraph -->
1663<p>Une <strong>adresse IP</strong> est un numéro unique (par exemple 70.84.29.148) attribué à un ordinateur (ou à un autre dispositif d’information compatible Internet, tel qu’une imprimante réseau) pour lui permettre de communiquer avec d’autres appareils utilisant le protocole Internet. Il s’agit de l’identité d’un ordinateur sur Internet, et chaque ordinateur connecté à Internet se voit attribuer au moins une - bien que les méthodes d’attribution de ces adresses, ainsi que la permanence et la durée de leur attribution, diffèrent selon l’utilisation de l’ordinateur et les circonstances de son utilisation d’Internet.</p>
1664<!-- /wp:paragraph -->
1665
1666<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1667<p class="has-vivid-green-cyan-background-color has-background">Every <a href="https://codex.wordpress.org/Glossary#Web_server">web server</a> is assigned an IP address as well, but often times <a href="https://codex.wordpress.org/Glossary#Hosting_provider">hosting providers</a>
1668 will assign multiple IP addresses to one computer, in the event that
1669multiple web sites reside on the same physical server. This is the case
1670with most inexpensive 'managed' or 'group' hosting packages.
1671</p>
1672<!-- /wp:paragraph -->
1673
1674<!-- wp:paragraph -->
1675<p>Une adresse IP est également attribuée à chaque <a href="#serveur-web" data-type="internal" data-id="#serveur-web">serveur Web</a>, mais les <a href="#fournisseurs-d%e2%80%99h%c3%a9bergement" data-type="internal" data-id="#fournisseurs-d%e2%80%99h%c3%a9bergement">fournisseurs d’hébergement</a> attribuent souvent plusieurs adresses IP à un ordinateur, dans le cas où plusieurs sites Web résident sur le même serveur physique. C’est le cas de la plupart des packages d’hébergement «&nbsp;gérés&nbsp;» ou «&nbsp;de groupe&nbsp;» les moins chers.</p>
1676<!-- /wp:paragraph -->
1677
1678<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1679<p class="has-vivid-green-cyan-background-color has-background"><a href="https://codex.wordpress.org/Glossary#Domain_name">Domain names</a>
1680 were created to provide an easier means of accessing internet resources
1681 than IP addresses, which are cumbersome to type and difficult to
1682remember. Every domain name has at least one corresponding IP address,
1683but only a small number of IP addresses have a domain name associated
1684with them, since only computers that are servers require domain names.
1685The domain name system (<a href="https://codex.wordpress.org/Glossary#DNS">DNS</a>) is what maps domain names to IP addresses.
1686</p>
1687<!-- /wp:paragraph -->
1688
1689<!-- wp:paragraph -->
1690<p>Les <a href="#nom-de-domaine" data-type="internal" data-id="#nom-de-domaine">noms de domaine</a> ont été créés pour fournir un moyen plus facile d’accéder aux ressources Internet que les adresses IP, qui sont lourdes à taper et difficiles à retenir. Chaque nom de domaine a au moins une adresse IP correspondante, mais seul un petit nombre d’adresses IP est associé à un nom de domaine, car seuls les ordinateurs qui sont des serveurs nécessitent des noms de domaine. Le système de nom de domaine (<a href="#dns" data-type="internal" data-id="#dns">DNS</a>) est ce qui mappe les noms de domaine aux adresses IP.</p>
1691<!-- /wp:paragraph -->
1692
1693<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1694<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/IP_address">IP address</a> (Wikipedia)</li></ul>
1695<!-- /wp:list -->
1696
1697<!-- wp:list -->
1698<ul><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Adresse_IP" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Adresse_IP">IP address</a> (Wikipedia)</li></ul>
1699<!-- /wp:list -->
1700
1701<!-- wp:heading -->
1702<h2>IDE</h2>
1703<!-- /wp:heading -->
1704
1705<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1706<p class="has-vivid-green-cyan-background-color has-background">Acronym for Integrated Development Environment. Is an application that provides several tools for software development.
1707An <strong>IDE</strong> usually includes:
1708</p>
1709<!-- /wp:paragraph -->
1710
1711<!-- wp:paragraph -->
1712<p>Acronyme de <strong>I</strong>ntegrated <strong>D</strong>evelopment <strong>E</strong>nvironment. C'est une application qui fournit plusieurs outils pour le développement de logiciels. Un <strong>IDE</strong> comprend généralement:</p>
1713<!-- /wp:paragraph -->
1714
1715<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1716<ul class="has-vivid-green-cyan-background-color has-background"><li> source code editor, which is similar to a <a href="https://wordpress.org/support/article/glossary/#text-editor">Text Editor</a></li><li> debugger, in the case of WordPress, useful debuggers are those for <a href="https://codex.wordpress.org/Glossary#PHP">PHP</a> and <a href="https://codex.wordpress.org/Glossary#Javascript">Javascript</a> code</li><li> automated builder</li></ul>
1717<!-- /wp:list -->
1718
1719<!-- wp:list -->
1720<ul><li>éditeur de code source, similaire à un <a href="#%c3%a9diteur-de-texte" data-type="internal" data-id="#%c3%a9diteur-de-texte">Éditeur de texte</a> ;</li><li>débogueur, dans le cas de WordPress, les débogueurs utiles sont ceux pour le code <a href="#php" data-type="internal" data-id="#php">PHP</a> et <a href="#javascript" data-type="internal" data-id="#javascript">Javascript</a>&nbsp;;</li><li>constructeur automatisé.</li></ul>
1721<!-- /wp:list -->
1722
1723<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1724<p class="has-vivid-green-cyan-background-color has-background">Some examples of IDEs
1725</p>
1726<!-- /wp:paragraph -->
1727
1728<!-- wp:paragraph -->
1729<p>Quelques exemples d’IDEs</p>
1730<!-- /wp:paragraph -->
1731
1732<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1733<ul class="has-vivid-green-cyan-background-color has-background"><li> <a href="http://www.aptana.com/">Aptana Studio</a> (Cross platform, Freeware)</li><li> <a href="http://www.codelobster.com/">Codelobster</a> (Windows only, Freeware)</li><li> <a href="http://www.eclipse.org/">Eclipse</a> (Cross platform, Freeware)</li><li> <a href="http://netbeans.org/features/php/">NetBeans</a> (Cross platform, Freeware)</li></ul>
1734<!-- /wp:list -->
1735
1736<!-- wp:list -->
1737<ul><li><a href="http://www.aptana.com/">Aptana Studio</a> (Cross platform, Freeware)</li><li><a href="http://www.codelobster.com/">Codelobster</a> (Windows only, Freeware)</li><li><a href="http://www.eclipse.org/">Eclipse</a> (Cross platform, Freeware)</li><li><a href="http://netbeans.org/features/php/">NetBeans</a> (Cross platform, Freeware)</li></ul>
1738<!-- /wp:list -->
1739
1740<!-- wp:heading -->
1741<h2>ISAPI</h2>
1742<!-- /wp:heading -->
1743
1744<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1745<p class="has-vivid-green-cyan-background-color has-background"><strong>ISAPI</strong> (Internet Server Application Programming Interface) is a
1746 set of programming standards designed to allow programmers to quickly
1747and easily develop efficient Web-based applications.  Developed by
1748Process Software and Microsoft Corporation, <em>ISAPI</em> is intended to replace <a href="https://codex.wordpress.org/Glossary#CGI">CGI</a> programs.
1749</p>
1750<!-- /wp:paragraph -->
1751
1752<!-- wp:paragraph -->
1753<p><strong>ISAPI</strong> (<strong>I</strong>nternet <strong>S</strong>erver <strong>A</strong>pplication <strong>P</strong>rogramming <strong>I</strong>nterface) est un ensemble de normes de programmation conçues pour permettre aux programmeurs de développer rapidement et facilement des applications Web efficaces. Développé par Process Software et Microsoft Corporation, ISAPI est destiné à remplacer les programmes <a href="#cgi" data-type="internal" data-id="#cgi">CGI</a>.</p>
1754<!-- /wp:paragraph -->
1755
1756<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1757<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/ISAPI">ISAPI at Wikipedia</a></li></ul>
1758<!-- /wp:list -->
1759
1760<!-- wp:list -->
1761<ul><li>Lien externe&nbsp;: <a href="http://fr.wikipedia.org/wiki/ISAPI" data-type="URL" data-id="http://fr.wikipedia.org/wiki/ISAPI">ISAPI sur Wikipedia</a></li></ul>
1762<!-- /wp:list -->
1763
1764<!-- wp:heading -->
1765<h2>JavaScript</h2>
1766<!-- /wp:heading -->
1767
1768<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1769<p class="has-vivid-green-cyan-background-color has-background"><strong>JavaScript</strong> is a programming language that WordPress uses to
1770make certain processing occur in your web browser when it is
1771inconvenient or impossible for the server to do that processing. For
1772example, when you reply to a comment in a WordPress blog, WordPress uses
1773 JavaScript to move the comment form inside the comment you are replying
1774 to.
1775</p>
1776<!-- /wp:paragraph -->
1777
1778<!-- wp:paragraph -->
1779<p><strong>JavaScrippt</strong> est un langage de programmation utilisé par WordPress pour que certains traitements se produisent dans votre navigateur Web lorsqu’il est gênant ou impossible pour le serveur d’effectuer ce traitement. Par exemple, lorsque vous répondez à un commentaire dans un blog WordPress, WordPress utilise JavaScript pour déplacer le formulaire de commentaire à l’intérieur du commentaire auquel vous répondez.</p>
1780<!-- /wp:paragraph -->
1781
1782<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1783<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#AJAX">AJAX</a>, <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a>, <a href="https://codex.wordpress.org/Glossary#XHTML">XHTML</a></li><li> Related article: <a href="https://codex.wordpress.org/Using_Javascript">Using Javascript</a></li><li> External link: <a href="http://en.wikipedia.org/wiki/Javascript">JavaScript</a> (Wikipedia)</li></ul>
1784<!-- /wp:list -->
1785
1786<!-- wp:list -->
1787<ul><li>Voir aussi&nbsp;: <a href="#ajax" data-type="internal" data-id="#ajax">AJAX</a>, <a href="#html" data-type="internal" data-id="#html">HTML</a>, <a href="#xhtml" data-type="internal" data-id="#xhtml">XHTML</a></li><li>Article en relation&nbsp;: <a href="https://codex.wordpress.org/Using_Javascript">Using Javascript</a> (en anglais)</li><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/JavaScript" data-type="URL" data-id="https://fr.wikipedia.org/wiki/JavaScript">JavaScript</a> (fr.Wikipedia.org)</li></ul>
1788<!-- /wp:list -->
1789
1790<!-- wp:heading -->
1791<h2>Linux</h2>
1792<!-- /wp:heading -->
1793
1794<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1795<p class="has-vivid-green-cyan-background-color has-background"><strong>Linux</strong> is an <a href="http://en.wikipedia.org/wiki/Open_source">open source</a> computer operating system, created by Linus Torvalds, similar in style to <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a>. It is popular in <a href="https://codex.wordpress.org/Glossary#Web_server">web server</a>
1796 and other high-performance computing environments, and has recently
1797begun to gain popularity in workstation environments as well.
1798</p>
1799<!-- /wp:paragraph -->
1800
1801<!-- wp:paragraph -->
1802<p><strong>Linux</strong> est un système d’exploitation informatique <a href="#open-source" data-type="internal" data-id="#open-source">open source</a>, créé par Linus Torvalds, de style similaire à <a href="#unix" data-type="internal" data-id="#unix">Unix</a>. Il est populaire dans les <a href="#serveur-" data-type="internal" data-id="#serveur-">serveurs web</a> et autres environnements informatiques hautes performances, et a récemment commencé à gagner en popularité dans les environnements de poste de travail.</p>
1803<!-- /wp:paragraph -->
1804
1805<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1806<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://www.shortopedia.com/L/I/Linux">Linux at Shortopedia</a>   <span class="has-inline-color has-vivid-red-color">lien HS 404</span></li></ul>
1807<!-- /wp:list -->
1808
1809<!-- wp:list -->
1810<ul><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Linux" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Linux">Linux</a></li></ul>
1811<!-- /wp:list -->
1812
1813<!-- wp:heading -->
1814<h2>Mac OS X</h2>
1815<!-- /wp:heading -->
1816
1817<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1818<p class="has-vivid-green-cyan-background-color has-background"><strong><a href="http://www.apple.com/macosx/">Mac OS X</a></strong>
1819 is an operating system specifically for modern Macintosh computers. The
1820 operating system was commercially released in 2001. It consists of two
1821main parts: Darwin, an open source <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a>-like
1822 environment which is based on the BSD source tree and the Mach
1823microkernel, adapted and further developed by Apple Computer with
1824involvement from independent developers; and a proprietary GUI named
1825Aqua, developed by Apple.
1826</p>
1827<!-- /wp:paragraph -->
1828
1829<!-- wp:paragraph -->
1830<p><strong><a href="http://www.apple.com/macosx/">Mac OS X</a></strong>  est un système d’exploitation spécialement conçu pour les ordinateurs Macintosh modernes. Le système d’exploitation a été commercialisé en 2001. Il se compose de deux parties principales&nbsp;: Darwin, un environnement open source de type <a href="#unix" data-type="internal" data-id="#unix">Unix</a> basé sur l’arborescence des sources BSD et le micro-noyau Mach, adapté et développé par Apple Computer avec la participation de développeurs indépendants ; et une interface graphique propriétaire nommée Aqua, développée par Apple.</p>
1831<!-- /wp:paragraph -->
1832
1833<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1834<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/UNIX_Shell_Skills">UNIX Shell Skills</a></li></ul>
1835<!-- /wp:list -->
1836
1837<!-- wp:list -->
1838<ul><li>Related articles: <a href="https://codex.wordpress.org/UNIX_Shell_Skills">UNIX Shell Skills</a></li></ul>
1839<!-- /wp:list -->
1840
1841<!-- wp:heading -->
1842<h2>MariaDB</h2>
1843<!-- /wp:heading -->
1844
1845<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1846<p class="has-vivid-green-cyan-background-color has-background">MariaDB is a fork of the <a href="https://codex.wordpress.org/Glossary#MySQL">MySQL</a> relational database system developed by most of the original developers of MySQL. It works equally well with WordPress.
1847</p>
1848<!-- /wp:paragraph -->
1849
1850<!-- wp:paragraph -->
1851<p>MariaDB est une branche du système de base de données relationnelle <a href="#mysql" data-type="internal" data-id="#mysql">MySQL</a> développé par la plupart des développeurs originaux de MySQL. Cela fonctionne aussi bien avec WordPress.</p>
1852<!-- /wp:paragraph -->
1853
1854<!-- wp:heading -->
1855<h2>Menu</h2>
1856<!-- /wp:heading -->
1857
1858<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1859<p class="has-vivid-green-cyan-background-color has-background"><strong>Menus</strong> are lists of links to pages and posts that appear on WordPress websites.
1860</p>
1861<!-- /wp:paragraph -->
1862
1863<!-- wp:paragraph -->
1864<p>Les <strong>menus</strong> sont des listes de liens vers des pages et des articles qui apparaissent sur les sites Web WordPress.</p>
1865<!-- /wp:paragraph -->
1866
1867<!-- wp:heading -->
1868<h2>Meta</h2>
1869<!-- /wp:heading -->
1870
1871<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1872<p class="has-vivid-green-cyan-background-color has-background"><strong>Meta</strong> has several meanings, but generally means <strong>information about</strong>.  In WordPress, <em>meta</em> usually refers to <strong>administrative</strong> type information.  As described in <a href="https://codex.wordpress.org/Meta_Tags_in_WordPress">Meta Tags in WordPress</a>, <em>meta</em> is the <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a> tag used to describe and define a web page to the outside world (search engines).  In the article <a href="https://codex.wordpress.org/Post_Meta_Data_Section">Post Meta Data</a>, <em>meta</em> refers to information associated with each <strong>post</strong>, such as the author's name and the date posted.  <a href="https://codex.wordpress.org/Codex:Guidelines#Meta_Rules">Meta Rules</a> define the general protocol to follow in using the Codex.  Also, many WordPress based sites offer a <em>Meta</em> section, usually found in the sidebar, with links to login or register at that site.  Finally, <em>Meta</em> is a <a href="http://www.mediawiki.org">MediaWiki</a> <a href="http://meta.wikimedia.org/wiki/Namespace">namespace</a> that refers to administrative functions within Codex.
1873</p>
1874<!-- /wp:paragraph -->
1875
1876<!-- wp:paragraph -->
1877<p><strong>Meta</strong> a plusieurs significations, mais signifie généralement des informations sur (quelque chose). Dans WordPress, méta fait généralement référence aux informations de type administratif. Comme décrit dans <a href="https://codex.wordpress.org/Meta_Tags_in_WordPress" data-type="URL" data-id="https://codex.wordpress.org/Meta_Tags_in_WordPress">les balises Meta dans WordPress</a> (en anglais), <em>meta</em> est la balise HTML utilisée pour décrire et définir une page Web vers le monde extérieur (moteurs de recherche). Dans l’article <a href="https://codex.wordpress.org/Post_Meta_Data_Section" data-type="URL" data-id="https://codex.wordpress.org/Post_Meta_Data_Section">Post Meta Data</a>, meta fait référence aux informations associées à chaque <strong>publication</strong>, telles que le nom de l’auteur et la date de publication. Les <a href="https://codex.wordpress.org/Codex:Guidelines#Meta_Rules" data-type="URL" data-id="https://codex.wordpress.org/Codex:Guidelines#Meta_Rules">Règles méta</a> (en anglais) définissent le protocole général à suivre pour utiliser le Codex. De plus, de nombreux sites basés sur WordPress proposent une section <em>Meta</em>, généralement située dans la barre latérale, avec des liens pour vous connecter ou vous inscrire sur ce site. Enfin, <em>Meta</em> est un <a href="http://meta.wikimedia.org/wiki/Namespace" data-type="URL" data-id="http://meta.wikimedia.org/wiki/Namespace">espace de noms</a> <a href="http://www.mediawiki.org" data-type="URL" data-id="http://www.mediawiki.org">MediaWiki</a> qui fait référence aux fonctions administratives au sein du Codex.</p>
1878<!-- /wp:paragraph -->
1879
1880<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1881<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/Meta-">Wikipedia's Article on Meta</a></li></ul>
1882<!-- /wp:list -->
1883
1884<!-- wp:list -->
1885<ul><li>Lien externe&nbsp;: <a href="http://en.wikipedia.org/wiki/Meta-"></a><a href="http://en.wikipedia.org/wiki/Meta-"></a><a href="http://en.wikipedia.org/wiki/Meta-">Meta</a> (Wikipedia, en anglais)</li></ul>
1886<!-- /wp:list -->
1887
1888<!-- wp:heading -->
1889<h2>Microformats</h2>
1890<!-- /wp:heading -->
1891
1892<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1893<p class="has-vivid-green-cyan-background-color has-background"><strong>Microformats</strong> provide a way for programs to read certain
1894information in web pages without making the pages look any different to
1895humans. They add semantics to the generic HTML markup in order for these
1896 programs to understand the meaning of specific parts of a web page
1897content which is better recognized by humans. For example, a web page
1898displaying a user's profile could use microformats to make it easy for a
1899 program to extract the user's contact information so that it can be
1900added to an address book in a single operation. In WordPress, some <a href="https://codex.wordpress.org/Glossary#theme">themes</a> and <a href="https://codex.wordpress.org/Glossary#plugin">plugins</a> support some microformats.
1901</p>
1902<!-- /wp:paragraph -->
1903
1904<!-- wp:paragraph -->
1905<p>Les<strong> microformats </strong>permettent aux programmes de lire certaines informations dans les pages Web sans que les pages aient une apparence différente pour les humains. Ils ajoutent une sémantique au balisage HTML générique afin que ces programmes comprennent la signification de parties spécifiques d’un contenu de page Web qui est mieux reconnu par les humains. <br>Par exemple, une page Web affichant le profil d’un utilisateur pourrait utiliser des microformats pour permettre à un programme d’extraire facilement les informations de contact de l’utilisateur afin qu’elles puissent être ajoutées à un carnet d’adresses en une seule opération. Dans WordPress, certains <a href="https://fr.wordpress.org/themes/tags/microformats/">thèmes</a> et <a href="https://fr.wordpress.org/plugins/tags/microformats/">extensions</a> prennent en charge certains microformats.</p>
1906<!-- /wp:paragraph -->
1907
1908<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1909<ul class="has-vivid-green-cyan-background-color has-background"><li> Related: <a href="http://wordpress.org/extend/themes/tags/microformats">Themes</a> and <a href="http://wordpress.org/extend/plugins/tags/microformats">plugins</a> providing microformats support</li><li> External links: <a href="http://microformats.org/">Microformats.org</a></li></ul>
1910<!-- /wp:list -->
1911
1912<!-- wp:list -->
1913<ul><li>En relation&nbsp;: <a href="/themes/tags/microformats/" data-type="URL" data-id="/themes/tags/microformats/">Thèmes</a> et <a href="/plugins/tags/microformats/" data-type="URL" data-id="/plugins/tags/microformats/">extensions</a> prenant en charge les microformats</li><li>Lien externe&nbsp;: <a href="http://microformats.org/">Microformats.org</a></li></ul>
1914<!-- /wp:list -->
1915
1916<!-- wp:heading -->
1917<h2>MIME</h2>
1918<!-- /wp:heading -->
1919
1920<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1921<p class="has-vivid-green-cyan-background-color has-background"><strong>MIME</strong> stands for <strong>Multipurpose Internet Mail Extension</strong> and is an Internet standard that extends the format of email to support:
1922</p>
1923<!-- /wp:paragraph -->
1924
1925<!-- wp:paragraph -->
1926<p><strong>MIME </strong>signifie <strong>M</strong>ultipurpose<strong> I</strong>nternet<strong> M</strong>ail<strong> E</strong>xtension et est une norme Internet qui étend le format du courrier électronique pour prendre en charge&nbsp;:</p>
1927<!-- /wp:paragraph -->
1928
1929<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1930<ul class="has-vivid-green-cyan-background-color has-background"><li> Text in character sets other than ASCII</li><li> Non-text attachments</li><li> Message bodies with multiple parts</li><li> Header information in non-ASCII character sets</li></ul>
1931<!-- /wp:list -->
1932
1933<!-- wp:list -->
1934<ul><li>Texte dans des jeux de caractères autres que ASCII</li><li>Pièces jointes non textuelles</li><li>Corps de message avec plusieurs parties</li><li>Informations d’en-tête dans les jeux de caractères non ASCII</li></ul>
1935<!-- /wp:list -->
1936
1937<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1938<p class="has-vivid-green-cyan-background-color has-background">MIME's use, however, has grown beyond describing the content of email
1939 and now is often used to describe content type in general including for
1940 the web and as a storage for rich content in some commercial products.
1941</p>
1942<!-- /wp:paragraph -->
1943
1944<!-- wp:paragraph -->
1945<p>Cependant, l’utilisation de MIME a dépassé le stade de la description du contenu des e-mails et est maintenant souvent utilisée pour décrire le type de contenu en général, y compris pour le Web et comme stockage pour un contenu riche dans certains produits commerciaux.</p>
1946<!-- /wp:paragraph -->
1947
1948<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1949<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://www.iana.org/assignments/media-types">IANA Media Types Specification</a>, <a href="http://en.wikipedia.org/wiki/MIME">Wikipedia</a></li></ul>
1950<!-- /wp:list -->
1951
1952<!-- wp:list -->
1953<ul><li>Liens externes&nbsp;: <a href="http://www.iana.org/assignments/media-types">IANA Media Types Specification</a> (en anglais), <a href="https://fr.wikipedia.org/wiki/Multipurpose_Internet_Mail_Extensions" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Multipurpose_Internet_Mail_Extensions">Wikipedia</a></li></ul>
1954<!-- /wp:list -->
1955
1956<!-- wp:heading -->
1957<h2>Moblogging</h2>
1958<!-- /wp:heading -->
1959
1960<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1961<p class="has-vivid-green-cyan-background-color has-background"><strong>Moblogging</strong> is the act of posting to one's <a href="https://codex.wordpress.org/Glossary#Blog">blog</a> via a mobile device, e.g. mobile phone, smartphone or tablet. It is pronounced as <em>mōbə-logging</em> or <em>mōb-logging</em>, or sometimes as <em>mŏb-logging</em> in reference to <em>smart mobs</em>.
1962</p>
1963<!-- /wp:paragraph -->
1964
1965<!-- wp:paragraph -->
1966<p>Le <strong>Moblogging</strong> est l’acte de publier sur son <a href="#blog" data-type="internal" data-id="#blog">blog</a> via un appareil mobile, par ex. téléphone portable, smartphone ou tablette. Il se prononce comme <em>mōbə-logging</em> ou <em>mōb-logging</em>, ou quelquefois comme <em>mŏb-logging</em> en  référence aux <em>smart mobs</em>. </p>
1967<!-- /wp:paragraph -->
1968
1969<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
1970<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Weblog_Client#Mobile">Moblog Clients</a>, <a href="https://codex.wordpress.org/Post_to_your_blog_using_email">Post to your blog using email</a></li></ul>
1971<!-- /wp:list -->
1972
1973<!-- wp:list -->
1974<ul><li>Article en relation&nbsp;: <a href="https://codex.wordpress.org/Post_to_your_blog_using_email">Post to your blog using email</a> (en anglais), <a href="/support/article/weblog-client/" data-type="URL" data-id="/support/article/weblog-client/">Clients Weblog</a>, </li></ul>
1975<!-- /wp:list -->
1976
1977<!-- wp:heading -->
1978<h2>mod_rewrite</h2>
1979<!-- /wp:heading -->
1980
1981<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1982<p class="has-vivid-green-cyan-background-color has-background"><strong>mod_rewrite</strong> is an extension module of the <a href="https://codex.wordpress.org/Glossary#Apache">Apache</a> <a href="https://codex.wordpress.org/Glossary#Web_server">web server</a> software which allows for "rewriting" of <a href="http://en.wikipedia.org/wiki/Url">URLs</a> on-the-fly. Rewrite <em>rules</em> use <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expressions</a>
1983 to parse the requested URL from the client, translate it into a
1984different URL, and serve the content of this new URL under the original
1985URL or pointing the client to make the new URL request.
1986</p>
1987<!-- /wp:paragraph -->
1988
1989<!-- wp:paragraph -->
1990<p><strong>mod_rewrite</strong> est un module d’extension du logiciel <a href="#apache" data-type="internal" data-id="#apache">Apache</a> du <a href="#serveur-web" data-type="internal" data-id="#serveur-web">serveur Web</a>  qui permet de «&nbsp;réécrire&nbsp;» les URL à la volée. Les règles de réécriture utilisent des <a href="https://fr.wikipedia.org/wiki/Expression_r%C3%A9guli%C3%A8re" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Expression_r%C3%A9guli%C3%A8re">expressions régulières</a> pour analyser l’URL demandée par le client, la traduire dans une URL différente et diffuser le contenu de cette nouvelle URL sous l’URL d’origine ou pour indiquer au client de faire la nouvelle demande d’URL.</p>
1991<!-- /wp:paragraph -->
1992
1993<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
1994<p class="has-vivid-green-cyan-background-color has-background">WordPress uses <em>mod_rewrite</em> for its <a href="https://codex.wordpress.org/Glossary#Permalink">permalink</a> structure, and also for <a href="https://codex.wordpress.org/Glossary#Multisite">multisite</a> networks, which are both optional functionality.
1995</p>
1996<!-- /wp:paragraph -->
1997
1998<!-- wp:paragraph -->
1999<p>WordPress utilise <em>mod_rewrite</em> pour sa structure de <a href="#permalien" data-type="internal" data-id="#permalien">permalien</a>, ainsi que pour les réseaux <a href="#multisite" data-type="internal" data-id="#multisite">multisites</a>, qui sont tous deux des fonctionnalités optionnelles.</p>
2000<!-- /wp:paragraph -->
2001
2002<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2003<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Using_Permalinks">Using Permalinks</a>, <a href="https://codex.wordpress.org/Create_A_Network">Create A Network</a></li></ul>
2004<!-- /wp:list -->
2005
2006<!-- wp:list -->
2007<ul><li>Articles en relation&nbsp;: <a href="/support/article/using-permalinks/" data-type="URL" data-id="/support/article/using-permalinks/">Utilisation des permaliens</a>, <a href="/support/article/create-a-network/" data-type="URL" data-id="/support/article/create-a-network/">Créer un réseau multisite</a></li></ul>
2008<!-- /wp:list -->
2009
2010<!-- wp:heading -->
2011<h2>Multisite</h2>
2012<!-- /wp:heading -->
2013
2014<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2015<p class="has-vivid-green-cyan-background-color has-background"><strong>Multisite</strong> is a feature of <a href="https://codex.wordpress.org/Version_3.0">WordPress 3.0</a> and later versions that allows multiple virtual <a href="https://codex.wordpress.org/Glossary#Site">sites</a>
2016 to share a single WordPress installation. When the multisite feature is
2017 activated, the original WordPress site can be converted to support a <a href="https://codex.wordpress.org/Glossary#Network">network</a> of sites.
2018</p>
2019<!-- /wp:paragraph -->
2020
2021<!-- wp:paragraph -->
2022<p><strong>Multisite </strong>est une fonctionnalité de <a href="https://codex.wordpress.org/Version_3.0" data-type="URL" data-id="https://codex.wordpress.org/Version_3.0">WordPress 3.0</a> et des versions ultérieures qui permet à plusieurs <a href="#site" data-type="internal" data-id="#site">sites</a> virtuels de partager une seule installation WordPress. Lorsque la fonctionnalité multisite est activée, le site WordPress d’origine peut être converti pour prendre en charge un <a href="#r%c3%a9seau" data-type="internal" data-id="#r%c3%a9seau">réseau</a> de sites.</p>
2023<!-- /wp:paragraph -->
2024
2025<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2026<ul class="has-vivid-green-cyan-background-color has-background"><li> Related article: <a href="https://codex.wordpress.org/Create_A_Network">Create A Network</a></li></ul>
2027<!-- /wp:list -->
2028
2029<!-- wp:list -->
2030<ul><li>Article en relation&nbsp;: <a href="/support/article/create-a-network/" data-type="URL" data-id="/support/article/create-a-network/">Créer un réseau multisite</a></li></ul>
2031<!-- /wp:list -->
2032
2033<!-- wp:heading -->
2034<h2>MySQL</h2>
2035<!-- /wp:heading -->
2036
2037<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2038<p class="has-vivid-green-cyan-background-color has-background"><strong>MySQL</strong> is a popular <a href="http://en.wikipedia.org/wiki/Open_source">open source</a> SQL (Structured Query Language) database implementation, available for many platforms, including Windows, <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a>/<a href="https://codex.wordpress.org/Glossary#Linux">Linux</a> and <a href="https://codex.wordpress.org/Glossary#Mac_OS_X">Mac OS X</a>.
2039</p>
2040<!-- /wp:paragraph -->
2041
2042<!-- wp:paragraph -->
2043<p><strong>MySQL</strong> est une implémentation de base de données SQL (Structured Query Language) <a href="https://fr.wikipedia.org/wiki/Open_source" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Open_source">open source</a> populaire, disponible pour de nombreuses plates-formes, notamment Windows, <a href="#unix" data-type="internal" data-id="#unix">Unix</a>/<a href="#linux" data-type="internal" data-id="#linux">Linux</a> et <a href="#mac-os-x" data-type="internal" data-id="#mac-os-x">Mac OS X</a>.</p>
2044<!-- /wp:paragraph -->
2045
2046<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2047<p class="has-vivid-green-cyan-background-color has-background">WordPress requires a MySQL database to store all <a href="https://codex.wordpress.org/Glossary#Blog">blog</a> information, including <a href="https://codex.wordpress.org/Glossary#Post">posts</a>, <a href="https://codex.wordpress.org/Glossary#Comments">comments</a>, <a href="https://codex.wordpress.org/Glossary#Meta">metadata</a>, and other information.
2048</p>
2049<!-- /wp:paragraph -->
2050
2051<!-- wp:paragraph -->
2052<p>WordPress nécessite une base de données MySQL pour stocker toutes les informations du blog, y compris les <a href="#article" data-type="internal" data-id="#article">articles</a>, les <a href="#commentaires" data-type="internal" data-id="#commentaires">commentaires</a>, les <a href="#meta" data-type="internal" data-id="#meta">métadonnées</a> et d'autres informations.</p>
2053<!-- /wp:paragraph -->
2054
2055<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2056<p class="has-vivid-green-cyan-background-color has-background">WordPress also works with MySQL-compatible databases such as <a href="https://codex.wordpress.org/Glossary#MariaDB">MariaDB</a> and Percona Server.
2057</p>
2058<!-- /wp:paragraph -->
2059
2060<!-- wp:paragraph -->
2061<p>WordPress fonctionne également avec des bases de données compatibles MySQL telles que <a href="#mariadb" data-type="internal" data-id="#mariadb">MariaDB</a> et Percona Server.</p>
2062<!-- /wp:paragraph -->
2063
2064<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2065<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Database_Description">Database Description</a></li><li> External links: <a href="http://mysql.com/">MySQL</a>, <a href="http://mariadb.org/">MariaDB</a>, <a href="http://www.percona.com/software/percona-server/">Percona Server</a></li></ul>
2066<!-- /wp:list -->
2067
2068<!-- wp:list -->
2069<ul><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Database_Description">Database Description</a></li><li>Liens externes&nbsp;: <a href="http://mysql.com/">MySQL</a>, <a href="http://mariadb.org/">MariaDB</a>, <a href="http://www.percona.com/software/percona-server/">Percona Server</a></li></ul>
2070<!-- /wp:list -->
2071
2072<!-- wp:paragraph -->
2073<p><a href="#top" data-type="internal" data-id="#top">Retour en haut</a></p>
2074<!-- /wp:paragraph -->
2075
2076<!-- wp:heading -->
2077<h2>Navigation</h2>
2078<!-- /wp:heading -->
2079
2080<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2081<p class="has-vivid-green-cyan-background-color has-background">Navigation is the term used to describe text on a page that, when
2082selected, redirects you to a corresponding page elsewhere on the
2083website. Navigation may sometimes be referred to as the menu, links and
2084hyperlinks.
2085</p>
2086<!-- /wp:paragraph -->
2087
2088<!-- wp:paragraph -->
2089<p>La navigation est le terme utilisé pour décrire du texte sur une page qui, lorsqu’elle est sélectionnée, vous redirige vers une page correspondante ailleurs sur le site Web. La navigation peut parfois être appelée menu, liens et hyperliens.</p>
2090<!-- /wp:paragraph -->
2091
2092<!-- wp:heading -->
2093<h2>Réseau</h2>
2094<!-- /wp:heading -->
2095
2096<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2097<p class="has-vivid-green-cyan-background-color has-background">In the WordPress user interface, a <strong>network</strong> is a collection of separate <a href="https://codex.wordpress.org/Glossary#Site">sites</a> created in a single WordPress installation by the <a href="https://codex.wordpress.org/Glossary#Multisite">multisite</a>
2098 feature. The sites in a WordPress network are not interconnected like
2099the things in other kinds of networks. They are very like the separate
2100blogs at WordPress.com.
2101</p>
2102<!-- /wp:paragraph -->
2103
2104<!-- wp:paragraph -->
2105<p>Dans l'interface utilisateur de WordPress, un <strong>réseau</strong> est un ensemble de <a href="#site" data-type="internal" data-id="#site">sites</a> distincts créés dans une seule installation WordPress par la fonctionnalité <a href="#multisite" data-type="internal" data-id="#multisite">multisite</a>. Les sites d'un réseau WordPress ne sont pas interconnectés comme les autres types de réseaux. Ils ressemblent beaucoup aux blogs séparés sur WordPress.com.</p>
2106<!-- /wp:paragraph -->
2107
2108<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2109<p class="has-vivid-green-cyan-background-color has-background">In WordPress code the network is known as the <em>site</em> and the sites are known as <em>blogs</em>.
2110</p>
2111<!-- /wp:paragraph -->
2112
2113<!-- wp:paragraph -->
2114<p>Dans le code WordPress, le réseau est connu sous le nom de site et les sites sont appelés <em>blogs</em>.</p>
2115<!-- /wp:paragraph -->
2116
2117<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2118<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Create_A_Network">Create A Network</a></li></ul>
2119<!-- /wp:list -->
2120
2121<!-- wp:list -->
2122<ul><li>Article en relation&nbsp;: <a href="https://fr.wordpress.org/support/article/create-a-network/">Créer un réseau multisite</a></li></ul>
2123<!-- /wp:list -->
2124
2125<!-- wp:heading -->
2126<h2>Lecteur d’actualités</h2>
2127<!-- /wp:heading -->
2128
2129<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2130<p class="has-vivid-green-cyan-background-color has-background">A <strong>news aggregator</strong> or <strong>news (feed) reader</strong> is a computer program which tracks syndicated information <a href="https://codex.wordpress.org/Glossary#Feed">feeds</a>, via <a href="https://codex.wordpress.org/Glossary#RSS">RSS</a>, <a href="https://codex.wordpress.org/Glossary#RDF">RDF</a>, or <a href="https://codex.wordpress.org/Glossary#Atom">Atom</a>.
2131 Most news aggregators allow one to 'subscribe' to a feed, and
2132automatically keep track of the articles one has read, similar to an
2133email client tracking read emails.
2134</p>
2135<!-- /wp:paragraph -->
2136
2137<!-- wp:paragraph -->
2138<p>Un <strong>agrégateur d’actualités</strong> ou <strong>lecteur d’actualités</strong> (flux) est un programme informatique qui suit les <a href="#flux" data-type="internal" data-id="#flux">flux</a> d’informations syndiqués, via <a href="#rss" data-type="internal" data-id="#rss">RSS</a>, <a href="#rdf" data-type="internal" data-id="#rdf">RDF</a> ou <a href="#atom" data-type="internal" data-id="#atom">Atom</a>. La plupart des agrégateurs d’actualités permettent de «&nbsp;s'abonner&nbsp;» à un flux et de garder automatiquement une trace des articles que l’on a lus, comme un client de messagerie qui suit les e-mails lus.</p>
2139<!-- /wp:paragraph -->
2140
2141<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2142<p class="has-vivid-green-cyan-background-color has-background">Many <a href="https://codex.wordpress.org/Glossary#Blog">blogs</a> make their content available in <a href="https://codex.wordpress.org/Glossary#Feed">feed</a> form for the convenience of readers using news aggregators. WordPress can generate feeds in <a href="https://codex.wordpress.org/Glossary#RSS">RSS</a> and/or <a href="https://codex.wordpress.org/Glossary#Atom">Atom</a> formats.
2143</p>
2144<!-- /wp:paragraph -->
2145
2146<!-- wp:paragraph -->
2147<p>De nombreux <a href="#blog" data-type="internal" data-id="#blog">blogs</a> rendent leur contenu disponible sous forme de <a href="#flux" data-type="internal" data-id="#flux">flux</a> pour la commodité des lecteurs à l’aide d’agrégateurs d’actualités. WordPress peut générer des flux aux formats <a href="#rss" data-type="internal" data-id="#rss">RSS</a> et/ou <a href="#atom" data-type="internal" data-id="#atom">Atom</a>. </p>
2148<!-- /wp:paragraph -->
2149
2150<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2151<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/News_aggregator">News aggregator at Wikipedia</a></li></ul>
2152<!-- /wp:list -->
2153
2154<!-- wp:list -->
2155<ul><li>Liens externes&nbsp;: <a href="http://en.wikipedia.org/wiki/News_aggregator">News aggregator at Wikipedia</a> (en anglais)</li></ul>
2156<!-- /wp:list -->
2157
2158<!-- wp:heading -->
2159<h2>Nonce</h2>
2160<!-- /wp:heading -->
2161
2162<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2163<p class="has-vivid-green-cyan-background-color has-background"><strong>Nonce</strong> is used for security purposes to protect against  unexpected or duplicate requests that could cause undesired permanent or  irreversible changes to the web site and particularly to its database.  Specifically, a nonce is an one-time token generated by a <a href="https://codex.wordpress.org/Glossary#Web_site">web site</a>  to identify future requests to that web site. When a request is  submitted, the web site verifies if a previously generated nonce  expected for this particular kind of request was sent along and decides  whether the request can be safely processed, or a notice of failure  should be returned. This could prevent unwanted repeated, expired or  malicious requests from being processed. </p>
2164<!-- /wp:paragraph -->
2165
2166<!-- wp:paragraph {"backgroundColor":"pale-pink"} -->
2167<p class="has-pale-pink-background-color has-background"><strong>Note du traducteur</strong> : la première phrase est mise au pluriel pour être en cohérence avec la description qui est faite dans l’article en relation ci-dessous.</p>
2168<!-- /wp:paragraph -->
2169
2170<!-- wp:paragraph -->
2171<p>Les <strong>Nonces </strong>sont utilisés à des fins de sécurité pour se protéger contre des demandes inattendues ou dupliquées qui pourraient entraîner des modifications permanentes ou irréversibles indésirables du <a href="#site" data-type="internal" data-id="#site">site web</a> et en particulier de sa base de données. Plus précisément, un nonce est un jeton unique généré par un site Web pour identifier les futures demandes adressées à ce site Web. Lorsqu’une demande est soumise, le site Web vérifie si un nonce généré précédemment prévu pour ce type particulier de demande a été envoyé et décide si la demande peut être traitée en toute sécurité ou si un avis d’échec doit être renvoyé. Cela pourrait empêcher le traitement des demandes répétées, expirées ou malveillantes indésirables.</p>
2172<!-- /wp:paragraph -->
2173
2174<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2175<p class="has-vivid-green-cyan-background-color has-background">Nonce is usually included in a hidden HTML form field or as a
2176part of an URL and therefore sent with a request by submitting a form
2177field or visiting a link. If a request is not verified, the web site
2178could generate a new nonce in its response and prompt the user to
2179intentionally  confirm the repetition of the request. In WordPress, the
2180response message is <em>"Are you sure you want to do this?"</em> by default.
2181</p>
2182<!-- /wp:paragraph -->
2183
2184<!-- wp:paragraph -->
2185<p>Un Nonce est généralement inclus dans un champ de formulaire HTML masqué ou comme partie d’une URL et donc envoyé avec une demande en soumettant un champ de formulaire ou en visitant un lien. Si une demande n’est pas vérifiée, le site Web pourrait générer un nouveau nonce dans sa réponse et inviter l’utilisateur à confirmer intentionnellement la répétition de la demande. Dans WordPress, le message de réponse est «&nbsp;Êtes-vous sûr de vouloir faire cela&nbsp;?&nbsp;» par défaut.</p>
2186<!-- /wp:paragraph -->
2187
2188<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2189<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/WordPress_Nonces">WordPress Nonces</a></li></ul>
2190<!-- /wp:list -->
2191
2192<!-- wp:list -->
2193<ul><li>Article en relation&nbsp;: <a href="https://codex.wordpress.org/fr:Les_Nonces_WordPress" data-type="URL" data-id="https://codex.wordpress.org/fr:Les_Nonces_WordPress">Les nonces WordPress</a></li></ul>
2194<!-- /wp:list -->
2195
2196<!-- wp:heading -->
2197<h2>Open Source</h2>
2198<!-- /wp:heading -->
2199
2200<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2201<p class="has-vivid-green-cyan-background-color has-background"><strong>Open source</strong> is simply programming code that can be read,
2202viewed, modified, and distributed, by anyone who desires.  WordPress is
2203distributed under an <em>open source</em>  <a href="http://www.gnu.org/copyleft/gpl.html">GNU General Public License (GPL)</a>.
2204</p>
2205<!-- /wp:paragraph -->
2206
2207<!-- wp:paragraph -->
2208<p><strong>Open source</strong> est simplement un code de programmation qui peut être lu, visualisé, modifié et distribué par quiconque le souhaite. WordPress est distribué sous une <a href="http://www.gnu.org/licenses/gpl-3.0.html" data-type="URL" data-id="http://www.gnu.org/licenses/gpl-3.0.html">licence publique générale GNU (GPL)</a> open source.</p>
2209<!-- /wp:paragraph -->
2210
2211<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2212<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/GPL">GPL</a>, <a href="https://codex.wordpress.org/License">License</a> </li><li> External links: <a href="http://www.opensource.org/">Open Source Initiative</a>, <a href="http://en.wikipedia.org/wiki/Open_source">Open Source at Wikipedia</a>, <a href="http://en.wikipedia.org/wiki/Source_code">Source Code at Wikipedia</a></li></ul>
2213<!-- /wp:list -->
2214
2215<!-- wp:list -->
2216<ul><li>Articles en relation&nbsp;: <a href="/about/license/" data-type="URL" data-id="/about/license/">GPL</a>, <a href="https://codex.wordpress.org/License">Licence</a>  ok, fait</li><li>Liens externes&nbsp;: <a href="http://www.opensource.org/">Open Source Initiative</a> (en anglais), <a href="https://fr.wikipedia.org/wiki/Open_source" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Open_source">Open Source</a> et <a href="https://fr.wikipedia.org/wiki/Code_source" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Code_source">Code source</a> (fr.wikipedia.org)</li></ul>
2217<!-- /wp:list -->
2218
2219<!-- wp:heading -->
2220<h2>Options</h2>
2221<!-- /wp:heading -->
2222
2223<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2224<p class="has-vivid-green-cyan-background-color has-background"><strong>Options</strong> are pieces of data that WordPress uses to store various preferences and configuration settings.
2225By using the <a href="https://codex.wordpress.org/Options_API">Options API</a> that is a simple and standardized way of storing data in the database, options can be <a href="https://codex.wordpress.org/Function_Reference/add_option">added</a>, <a href="https://codex.wordpress.org/Function_Reference/update_option">changed</a>, <a href="https://codex.wordpress.org/Function_Reference/delete_option">removed</a>, and <a href="https://codex.wordpress.org/Function_Reference/get_option">retrieved</a>, from the <a href="https://codex.wordpress.org/Database_Description#Table:_wp_options">wp_options table</a>.
2226</p>
2227<!-- /wp:paragraph -->
2228
2229<!-- wp:paragraph -->
2230<p><strong>Les options </strong>sont des éléments de données que WordPress utilise pour stocker diverses préférences et paramètres de configuration. En utilisant l’<a href="https://codex.wordpress.org/Options_API" data-type="URL" data-id="https://codex.wordpress.org/Options_API">API Options</a> qui est un moyen simple et standardisé de stocker des données dans la base de données, des options peuvent être <a href="https://codex.wordpress.org/Function_Reference/add_option" data-type="URL" data-id="https://codex.wordpress.org/Function_Reference/add_option">ajoutées</a>, <a href="https://codex.wordpress.org/Function_Reference/update_option" data-type="URL" data-id="https://codex.wordpress.org/Function_Reference/update_option">modifiées</a>, <a href="https://codex.wordpress.org/Function_Reference/delete_option" data-type="URL" data-id="https://codex.wordpress.org/Function_Reference/delete_option">supprimées</a> et <a href="https://codex.wordpress.org/Function_Reference/get_option" data-type="URL" data-id="https://codex.wordpress.org/Function_Reference/get_option">récupérées</a> à partir de la <a href="https://codex.wordpress.org/Database_Description#Table:_wp_options" data-type="URL" data-id="https://codex.wordpress.org/Database_Description#Table:_wp_options">table wp_options</a>.</p>
2231<!-- /wp:paragraph -->
2232
2233<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2234<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Option_Reference">Option Reference</a>, <a href="https://codex.wordpress.org/Transients_API">Transients API</a>, <a href="https://codex.wordpress.org/Options_API">Options API</a></li></ul>
2235<!-- /wp:list -->
2236
2237<!-- wp:list -->
2238<ul><li> Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Option_Reference">Option Reference</a>, <a href="https://developer.wordpress.org/apis/handbook/transients/" data-type="URL" data-id="https://developer.wordpress.org/apis/handbook/transients/">Transients API</a>, <a href="https://codex.wordpress.org/Options_API">Options API</a> (en anglais)</li></ul>
2239<!-- /wp:list -->
2240
2241<!-- wp:heading -->
2242<h2>Compression de sortie</h2>
2243<!-- /wp:heading -->
2244
2245<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2246<p class="has-vivid-green-cyan-background-color has-background"><strong>Output Compression</strong> is the removal of white spaces, carriage
2247returns, new lines and tabs from your HTML document. This reduces the
2248file size of the HTML document without changing the functionality.
2249</p>
2250<!-- /wp:paragraph -->
2251
2252<!-- wp:paragraph -->
2253<p>La <strong>compression de sortie </strong>consiste à supprimer les espaces blancs, les retours chariot, les nouvelles lignes et les tabulations de votre document HTML. Cela réduit la taille du fichier du document HTML sans modifier la fonctionnalité.</p>
2254<!-- /wp:paragraph -->
2255
2256<!-- wp:list -->
2257<ul><li> Related articles: <a href="https://codex.wordpress.org/Output_Compression">Output Compression</a> </li></ul>
2258<!-- /wp:list -->
2259
2260<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
2261<ul class="has-luminous-vivid-amber-background-color has-background"><li>Articles en relation : <a href="https://codex.wordpress.org/Output_Compression">Output Compression</a> (en anglais)</li></ul>
2262<!-- /wp:list -->
2263
2264<!-- wp:heading -->
2265<h2>Page (type de publication)</h2>
2266<!-- /wp:heading -->
2267
2268<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2269<p class="has-vivid-green-cyan-background-color has-background">A <strong>Page</strong> is often used to present "static" information about
2270yourself or your site.  A good example of a Page is information you
2271would place on an About Page.  A Page should not be confused with the
2272time-oriented objects called <a href="https://codex.wordpress.org/Glossary#Post">posts</a>.   Pages are typically "timeless" in nature and live "outside" your blog.
2273</p>
2274<!-- /wp:paragraph -->
2275
2276<!-- wp:paragraph -->
2277<p>Une <strong>Page</strong> est souvent utilisée pour présenter des informations «&nbsp;statiques&nbsp;» sur vous-même ou votre site. Les informations que vous placeriez sur une page<em> À propos de</em> sont un bon exemple de page. Une page ne doit pas être confondue avec les objets temporels appelés <a href="#article" data-type="internal" data-id="#article">articles</a>. Les pages sont généralement de nature «&nbsp;intemporelle&nbsp;» et vivent «&nbsp;en dehors&nbsp;» de votre blog.</p>
2278<!-- /wp:paragraph -->
2279
2280<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2281<p class="has-vivid-green-cyan-background-color has-background">The word "page" has long been used to describe any HTML document
2282on the web. In WordPress, however, "Page" refers to a very specific
2283feature first introduced in WordPress version 1.5.
2284</p>
2285<!-- /wp:paragraph -->
2286
2287<!-- wp:paragraph -->
2288<p>Le mot «&nbsp;page&nbsp;» a longtemps été utilisé pour décrire tout document HTML sur le Web. Dans WordPress, cependant, «&nbsp;Page&nbsp;» fait référence à une fonctionnalité très spécifique introduite pour la première fois dans la version 1.5 de WordPress.</p>
2289<!-- /wp:paragraph -->
2290
2291<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2292<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Pages">Pages</a>, <a href="https://codex.wordpress.org/Write_Page_SubPanel">Write Page SubPanel</a></li></ul>
2293<!-- /wp:list -->
2294
2295<!-- wp:list -->
2296<ul><li>Articles en relation&nbsp;: <a href="/support/article/pages/" data-type="URL" data-id="/support/article/pages/">Pages</a>, <a href="https://fr.wordpress.org/support/article/pages/#création-d’une-page">Création d’une page</a></li></ul>
2297<!-- /wp:list -->
2298
2299<!-- wp:heading -->
2300<h2>Perl</h2>
2301<!-- /wp:heading -->
2302
2303<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2304<p class="has-vivid-green-cyan-background-color has-background"><strong>Perl</strong> is an acronym for <strong>Practical Extraction and Report Language</strong>,
2305 but it's most commonly spelled as a proper name. It's a very popular
2306and powerful scripting language used for web applications, although its
2307use is being largely replaced by <a href="https://codex.wordpress.org/Glossary#PHP">PHP</a> in the mainstream. One of its strengths lies in its speedy and effective use of <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expressions</a>. Its unofficial motto is, "There's More Than One Way To Do It," or "TMTOWTDI," owing to the extreme flexibility of the syntax.
2308</p>
2309<!-- /wp:paragraph -->
2310
2311<!-- wp:paragraph -->
2312<p><strong>Perl </strong>est un acronyme pour <em><strong>P</strong>ractical<strong> E</strong>xtraction<strong> </strong>and<strong> R</strong>eport<strong> L</strong>anguage</em><strong>, </strong>mais il est le plus souvent orthographié comme un nom propre. C’est un langage de script très populaire et puissant utilisé pour les applications Web, bien que son utilisation soit largement remplacée par <a href="#php" data-type="internal" data-id="#php">PHP</a> dans le grand public. L’une de ses forces réside dans son utilisation rapide et efficace des <a href="https://fr.wikipedia.org/wiki/Expression_r%C3%A9guli%C3%A8re" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Expression_r%C3%A9guli%C3%A8re">expressions régulières</a>. Sa devise non officielle est «&nbsp;Il y a plus d’une façon de le faire&nbsp;» ou «&nbsp;TMTOWTDI&nbsp;», en raison de l’extrême flexibilité de la syntaxe.</p>
2313<!-- /wp:paragraph -->
2314
2315<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2316<p class="has-vivid-green-cyan-background-color has-background">WordPress does not use Perl, and it is therefore not required.
2317</p>
2318<!-- /wp:paragraph -->
2319
2320<!-- wp:paragraph -->
2321<p>WordPress n’utilise pas Perl, et il n’est donc pas nécessaire.</p>
2322<!-- /wp:paragraph -->
2323
2324<!-- wp:heading -->
2325<h2>Permalien</h2>
2326<!-- /wp:heading -->
2327
2328<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2329<p class="has-vivid-green-cyan-background-color has-background">A <strong>permalink</strong> is a <a href="http://en.wikipedia.org/wiki/Url">URL</a> at which a resource or article will be permanently stored. Many pages driven by <a href="https://codex.wordpress.org/Glossary#Content_Management_System">Content Management Systems</a>
2330 contain excerpts of content which is frequently rotated, making linking
2331 to bits of information within them a game of chance. Permalinks allow
2332users to bookmark full articles at a <a href="http://en.wikipedia.org/wiki/Url">URL</a> they know will never change, and will always present the same content.
2333</p>
2334<!-- /wp:paragraph -->
2335
2336<!-- wp:paragraph -->
2337<p>Un <strong>permalien</strong> est une <a href="https://fr.wikipedia.org/wiki/Uniform_Resource_Locator" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Uniform_Resource_Locator">URL</a> sur laquelle une ressource ou un article sera stocké en permanence. De nombreuses pages gérées par les <a href="#cms" data-type="internal" data-id="#cms">systèmes de gestion de contenu</a> contiennent des extraits de contenu qui sont fréquemment tournés, faisant de la liaison vers des informations en leur sein un jeu de hasard. Les liens permanents permettent aux utilisateurs de mettre en signet des articles complets à une <a href="https://fr.wikipedia.org/wiki/Uniform_Resource_Locator" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Uniform_Resource_Locator">URL</a> dont ils savent qu’elle ne changera jamais et qui présentera toujours le même contenu.</p>
2338<!-- /wp:paragraph -->
2339
2340<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2341<p class="has-vivid-green-cyan-background-color has-background">Permalinks are optional in WordPress, but are highly recommended as they greatly increase the cleanliness of <a href="http://en.wikipedia.org/wiki/Url">URL</a>. WordPress uses the <a href="https://codex.wordpress.org/Glossary#Apache">Apache</a> module <em><a href="https://codex.wordpress.org/Glossary#mod_rewrite">mod_rewrite</a></em> to implement its permalink system.
2342</p>
2343<!-- /wp:paragraph -->
2344
2345<!-- wp:paragraph -->
2346<p>Les permaliens sont facultatifs dans WordPress, mais sont fortement recommandés car ils augmentent considérablement la propreté de l’<a href="https://fr.wikipedia.org/wiki/Uniform_Resource_Locator">URL</a>. WordPress utilise le module <em><a href="#mod_rewrite" data-type="internal" data-id="#mod_rewrite">mod_rewrite</a></em> d’<a href="#apache" data-type="internal" data-id="#apache">Apache</a>  pour implémenter son système de permalien.</p>
2347<!-- /wp:paragraph -->
2348
2349<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2350<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Using_Permalinks">Using Permalinks</a></li><li> External links: <a href="http://en.wikipedia.org/wiki/Url">URL at Wikipedia</a></li></ul>
2351<!-- /wp:list -->
2352
2353<!-- wp:list -->
2354<ul><li>Article en relation&nbsp;: <a href="/support/article/using-permalinks/" data-type="URL" data-id="/support/article/using-permalinks/">Utilisation des permaliens</a></li><li>Liens externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Uniform_Resource_Locator" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Uniform_Resource_Locator">URL</a> (fr.Wikipedia.org)</li></ul>
2355<!-- /wp:list -->
2356
2357<!-- wp:heading -->
2358<h2>Droits</h2>
2359<!-- /wp:heading -->
2360
2361<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2362<p class="has-vivid-green-cyan-background-color has-background"><strong>Permissions</strong> are security settings restricting or allowing users to perform certain functions. In the case of files on <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a> or <a href="https://codex.wordpress.org/Glossary#Linux">Linux</a> systems, there are three types of permissions: <em>read</em>, <em>write</em>, and <em>execute</em>. In the case of <a href="https://codex.wordpress.org/Glossary#MySQL">MySQL</a> or <a href="https://codex.wordpress.org/Glossary#MariaDB">MariaDB</a> databases, there are many more: <code>SELECT</code>, <code>INSERT</code>, <code>UPDATE</code>, <code>DELETE</code>, etc. — although MySQL/MariaDB refer to them as <em>privileges</em>.
2363</p>
2364<!-- /wp:paragraph -->
2365
2366<!-- wp:paragraph -->
2367<p><strong>Les droits, </strong>appelés aussi<strong> «&nbsp;autorisations&nbsp;» </strong>sont des paramètres de sécurité qui restreignent ou autorisent les utilisateurs à exécuter certaines fonctions. Dans le cas des fichiers sur les systèmes <a href="#unix" data-type="internal" data-id="#unix">Unix</a> ou <a href="#linux" data-type="internal" data-id="#linux">Linux</a>, il existe trois types d’autorisations: lecture, écriture et exécution. Dans le cas des bases de données <a href="#mysql" data-type="internal" data-id="#mysql">MySQL</a> ou <a href="#mariadb" data-type="internal" data-id="#mariadb">MariaDB</a>, il y en a beaucoup plus&nbsp;<strong>:</strong> <code>SELECT</code>, <code>INSERT</code>, <code>UPDATE</code>, <code>DELETE</code>, etc. — bien que MySQL/MariaDB les appelle des <em>privilèges</em>.</p>
2368<!-- /wp:paragraph -->
2369
2370<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2371<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Changing_File_Permissions">Changing File Permissions</a></li></ul>
2372<!-- /wp:list -->
2373
2374<!-- wp:list -->
2375<ul><li>Article en relation&nbsp;: <a href="/support/article/changing-file-permissions/" data-type="URL" data-id="/support/article/changing-file-permissions/">Modification des autorisations de fichiers</a></li></ul>
2376<!-- /wp:list -->
2377
2378<!-- wp:heading -->
2379<h2>PHP</h2>
2380<!-- /wp:heading -->
2381
2382<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2383<p class="has-vivid-green-cyan-background-color has-background"><strong>PHP</strong> is a recursive acronym for <strong>PHP: Hypertext Preprocessor</strong>. It is a popular server-side scripting language designed specifically for integration with <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a>, and is used (often in conjunction with <a href="https://codex.wordpress.org/Glossary#MySQL">MySQL</a> or <a href="https://codex.wordpress.org/Glossary#MariaDB">MariaDB</a>) in <a href="https://codex.wordpress.org/Glossary#Content_Management_System">Content Management Systems</a> and other web applications. It is available on many platforms, including Windows, <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a>/<a href="https://codex.wordpress.org/Glossary#Linux">Linux</a> and <a href="https://codex.wordpress.org/Glossary#Mac_OS_X">Mac OS X</a>, and is <a href="http://en.wikipedia.org/wiki/Open_source">open source</a> software.
2384</p>
2385<!-- /wp:paragraph -->
2386
2387<!-- wp:paragraph -->
2388<p><strong>PHP</strong> est un acronyme récursif pour <em><strong>P</strong>HP&nbsp;:<strong> H</strong>ypertext <strong>P</strong>reprocessor</em>. C’est un langage de script côté serveur populaire conçu spécifiquement pour l’intégration avec <a href="#html" data-type="internal" data-id="#html">HTML</a>, et est utilisé (souvent en conjonction avec <a href="#mysql" data-type="internal" data-id="#mysql">MySQL</a> ou <a href="#mariadb" data-type="internal" data-id="#mariadb">MariaDB</a>) dans les <a href="#cms" data-type="internal" data-id="#cms">systèmes de gestion de contenu</a> et d’autres applications Web. Il est disponible sur de nombreuses plates-formes, y compris Windows, <a href="#unix" data-type="internal" data-id="#unix">Unix</a>/<a href="#linux" data-type="internal" data-id="#linux">Linux</a> et <a href="#mac-os-x" data-type="internal" data-id="#mac-os-x">Mac OS X</a>, et est un logiciel <a href="https://fr.wikipedia.org/wiki/Open_source">open source</a>.</p>
2389<!-- /wp:paragraph -->
2390
2391<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2392<p class="has-vivid-green-cyan-background-color has-background">WordPress is written using PHP and requires it for operation.
2393</p>
2394<!-- /wp:paragraph -->
2395
2396<!-- wp:paragraph -->
2397<p>WordPress est écrit en PHP et en a besoin pour fonctionner.</p>
2398<!-- /wp:paragraph -->
2399
2400<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2401<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://php.net/">PHP Website</a>, <a href="http://web.archive.org/web/20150402040826/http://www.digital-web.com/articles/php_for_designers/">PHP for Designers</a> — by WordPress lead <a href="https://codex.wordpress.org/Glossary#Developer">developer</a> <a href="https://codex.wordpress.org/User:Matt">Matthew Mullenweg</a>, <a href="http://www.onlamp.com/php/">PHP at OnLAMP</a></li></ul>
2402<!-- /wp:list -->
2403
2404<!-- wp:list -->
2405<ul><li>Liens externes&nbsp;: <a href="http://php.net/">PHP Website</a>, <a href="http://web.archive.org/web/20150402040826/http://www.digital-web.com/articles/php_for_designers/">PHP for Designers</a> — by WordPress lead  <a href="https://codex.wordpress.org/User:Matt">Matthew Mullenweg</a>, <a href="http://www.onlamp.com/php/">PHP at OnLAMP</a>, (les 4 en anglais) <a href="https://fr.wordpress.org/support/wp-admin/post.php?post=10829891&amp;action=edit#d%c3%a9veloppeur">dévelopeur</a></li></ul>
2406<!-- /wp:list -->
2407
2408<!-- wp:heading -->
2409<h2>phpMyAdmin</h2>
2410<!-- /wp:heading -->
2411
2412<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
2413<p class="has-light-green-cyan-background-color has-background"><strong>phpMyAdmin</strong> is a popular, powerful web-based interface for administering <a href="https://codex.wordpress.org/Glossary#MySQL">MySQL</a> or <a href="https://codex.wordpress.org/Glossary#MariaDB">MariaDB</a> databases. It is <a href="http://en.wikipedia.org/wiki/Open_source">open source</a>, written in <a href="https://codex.wordpress.org/Glossary#PHP">PHP</a>, and is among the better tools available for working with <a href="https://codex.wordpress.org/Glossary#MySQL">MySQL</a> or <a href="https://codex.wordpress.org/Glossary#MariaDB">MariaDB</a> databases.
2414</p>
2415<!-- /wp:paragraph -->
2416
2417<!-- wp:paragraph -->
2418<p><strong>phpMyAdmin </strong>est une interface Web puissante et populaire pour l’administration de bases de données <a href="#mysql" data-type="internal" data-id="#mysql">MySQL</a> ou <a href="#mariadb" data-type="internal" data-id="#mariadb">MariaDB</a>. Il est <a href="https://fr.wikipedia.org/wiki/Open_source" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Open_source">open source</a>, écrit en <a href="#php" data-type="internal" data-id="#php">PHP</a>, et fait partie des meilleurs outils disponibles pour travailler avec des bases de données <a href="#mysql" data-type="internal" data-id="#mysql">MySQL</a> ou <a href="#mariadb" data-type="internal" data-id="#mariadb">MariaDB</a>.</p>
2419<!-- /wp:paragraph -->
2420
2421<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2422<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/phpMyAdmin" data-type="URL">phpMyAdmin</a></li><li> External links: <a href="https://www.phpmyadmin.net/">phpMyAdmin web site</a></li></ul>
2423<!-- /wp:list -->
2424
2425<!-- wp:list -->
2426<ul><li>Article en relation&nbsp;: <a href="/support/article/phpmyadmin/" data-type="URL" data-id="/support/article/phpmyadmin/">phpMyAdmin</a></li><li>Lien externe&nbsp;: <a href="https://www.phpmyadmin.net/">phpMyAdmin web site</a></li></ul>
2427<!-- /wp:list -->
2428
2429<!-- wp:heading -->
2430<h2>Ping</h2>
2431<!-- /wp:heading -->
2432
2433<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2434<p class="has-vivid-green-cyan-background-color has-background">Within the WordPress interface, "ping" is sometimes used to refer to <a href="https://codex.wordpress.org/Glossary#Pingback">Pingbacks</a> and <a href="https://codex.wordpress.org/Glossary#Trackback">Trackbacks</a>.
2435</p>
2436<!-- /wp:paragraph -->
2437
2438<!-- wp:paragraph -->
2439<p>Dans l'interface WordPress, «&nbsp;ping&nbsp;» est parfois utilisé pour désigner les <a href="#pingback" data-type="internal" data-id="#pingback">Pingbacks</a> et <a href="#trackback" data-type="internal" data-id="#trackback">Trackbacks</a>.</p>
2440<!-- /wp:paragraph -->
2441
2442<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2443<p class="has-vivid-green-cyan-background-color has-background">In general computer terms, "ping" is a common utility used in a TCP/IP environment to determine if a given <a href="https://codex.wordpress.org/Glossary#IP_address">IP Address</a>
2444 exists or is reachable.  Typically, Ping is used to diagnose a network
2445connection problem.  Many times you will be asked, "Can you ping that
2446address?".   That means, does the Ping utility return a success message
2447trying to reach the "problem" <a href="https://codex.wordpress.org/Glossary#IP_address">IP Address</a>?
2448</p>
2449<!-- /wp:paragraph -->
2450
2451<!-- wp:paragraph -->
2452<p>En termes informatiques généraux, «&nbsp;ping» est un utilitaire couramment utilisé dans un environnement TCP/IP pour déterminer si une <a href="#adresse-ip" data-type="internal" data-id="#adresse-ip">adresse IP</a> donnée existe ou est accessible. En règle générale, Ping est utilisé pour diagnostiquer un problème de connexion réseau. Plusieurs fois, on vous demandera&nbsp;: «&nbsp;Pouvez‑vous pingler cette adresse&nbsp;?&nbsp;». Cela signifie que l’utilitaire Ping renvoie un message de réussite en essayant d’atteindre l’<a href="#adresse-ip" data-type="internal" data-id="#adresse-ip">adresse IP</a> «&nbsp;à problème&nbsp;».  <span class="has-inline-color has-vivid-red-color">(je ne parviens pas à comprendre pourquoi il y a un "?" dans la phrase anglaise ^^ Patrice)</span></p>
2453<!-- /wp:paragraph -->
2454
2455<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2456<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/Ping">Ping at Wikipedia</a></li></ul>
2457<!-- /wp:list -->
2458
2459<!-- wp:list -->
2460<ul><li>Liens externes&nbsp;: <a href="http://en.wikipedia.org/wiki/Ping">Ping at Wikipedia</a> (en anglais), <a href="https://fr.wikipedia.org/wiki/Ping_(logiciel)" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Ping_(logiciel)">Ping (logiciel)</a>, <a href="https://fr.wikipedia.org/wiki/Ping_(blogue)" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Ping_(blogue)">Ping (Blogue)</a></li></ul>
2461<!-- /wp:list -->
2462
2463<!-- wp:heading -->
2464<h2>Pingback</h2>
2465<!-- /wp:heading -->
2466
2467<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2468<p class="has-vivid-green-cyan-background-color has-background"><strong>Pingback</strong> lets you notify the author of an article if you link
2469to his article (article on a blog, of course). If the links you include
2470in an article you write on a blog lead to a blog which is
2471pingback-enabled, then the author of that blog gets a notification in
2472the form of a pingback that you linked to his article.
2473</p>
2474<!-- /wp:paragraph -->
2475
2476<!-- wp:paragraph -->
2477<p>Un <strong>Pingback </strong>vous permet d’avertir l’auteur d’un article si vous créez un lien vers son article (article sur un blog, bien sûr). Si les liens que vous incluez dans un article que vous écrivez sur un blog mènent à un blog qui est activé par pingback, alors l’auteur de ce blog reçoit une notification sous la forme d’un pingback que vous avez lié à son article.</p>
2478<!-- /wp:paragraph -->
2479
2480<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2481<p class="has-vivid-green-cyan-background-color has-background">If you're feeling <em>really</em> geeky you may want to check out the <a href="http://hixie.ch/specs/pingback/pingback">Pingback technical specification</a> or  <a href="http://lists.automattic.com/pipermail/wp-hackers/2009-September/027425.html">Otto's "How Pingbacks Work" explanation</a>.
2482</p>
2483<!-- /wp:paragraph -->
2484
2485<!-- wp:paragraph -->
2486<p>Si vous vous sentez vraiment geek, vous voudrez peut-être consulter les pages <a href="http://hixie.ch/specs/pingback/pingback">Pingback technical specification</a> ou  <a href="http://lists.automattic.com/pipermail/wp-hackers/2009-September/027425.html">Otto's "How Pingbacks Work" explanation</a>. </p>
2487<!-- /wp:paragraph -->
2488
2489<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2490<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Trackback">Trackback</a></li><li> Related articles: <a href="https://codex.wordpress.org/Introduction_to_Blogging#Pingbacks">Introduction to Blogging: Pingbacks</a></li></ul>
2491<!-- /wp:list -->
2492
2493<!-- wp:list -->
2494<ul><li>Voir aussi&nbsp;: <a href="#r%c3%a9trolien" data-type="internal" data-id="#r%c3%a9trolien">Rétrolien</a><span class="has-inline-color has-vivid-red-color"></span></li><li>Article en relation : <a href="https://fr.wordpress.org/support/article/introduction-to-blogging/#g%c3%a9rer-les-commentaires" data-type="URL" data-id="https://fr.wordpress.org/support/article/introduction-to-blogging/#g%c3%a9rer-les-commentaires">Introduction au  Blogging&nbsp;: Ping</a></li></ul>
2495<!-- /wp:list -->
2496
2497<!-- wp:heading -->
2498<h2>Extension</h2>
2499<!-- /wp:heading -->
2500
2501<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2502<p class="has-vivid-green-cyan-background-color has-background">A <strong>Plugin</strong> is a group of PHP functions that can extend the
2503functionality present in a standard WordPress weblog. These functions
2504may all be defined in one php file, or may be spread among more than one
2505 file. Usually, a plugin is a PHP file that can be uploaded to the
2506"wp-content/plugins" directory on your webserver, where you have
2507installed WordPress. Once you have uploaded the plugin file, you should
2508be able to "turn it on" or Enable it from the "Plugins" page in the
2509administration interface of your weblog. The WordPress source code
2510contains hooks that can be used by plugins.
2511</p>
2512<!-- /wp:paragraph -->
2513
2514<!-- wp:paragraph -->
2515<p>Une <strong>Extension</strong> est un groupe de fonctions PHP qui peuvent étendre les fonctionnalités présentes dans un blog WordPress standard. Ces fonctions peuvent toutes être définies dans un fichier PHP ou être réparties dans plusieurs fichiers. Habituellement, une extension est un fichier PHP qui peut être téléchargé dans le répertoire «&nbsp;wp-content/plugins&nbsp;» de votre serveur Web, où vous avez installé WordPress. Une fois que vous avez téléchargé le fichier de l’extension, vous devriez pouvoir «&nbsp;l’activer&nbsp;» ou l’activer depuis la page «&nbsp;Extensions&nbsp;» de l’interface d’administration de votre blog. Le code source WordPress contient des crochets qui peuvent être utilisés par des extensions.</p>
2516<!-- /wp:paragraph -->
2517
2518<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2519<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Hack">Hack</a>, <a href="https://codex.wordpress.org/Glossary#Hacking">Hacking</a></li><li> Related articles: <a href="https://codex.wordpress.org/Plugins">Plugins</a></li></ul>
2520<!-- /wp:list -->
2521
2522<!-- wp:list -->
2523<ul><li>Voir aussi&nbsp;: <a href="#hack" data-type="internal" data-id="#hack">Hack</a>, <a href="#hacking" data-type="internal" data-id="#hacking">Hacking</a></li><li>Article en relation&nbsp;: <a href="/support/article/plugins/" data-type="URL" data-id="/support/article/plugins/">Extensions</a></li></ul>
2524<!-- /wp:list -->
2525
2526<!-- wp:heading -->
2527<h2>Portage</h2>
2528<!-- /wp:heading -->
2529
2530<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2531<p class="has-vivid-green-cyan-background-color has-background">Within the context of the WordPress community, a <strong>port</strong> is a bit
2532 of code that has been rewritten to be compatible with WordPress.  For
2533example, if someone wrote a plugin for MoveableType, WordPress users may
2534 want to find a port of that plugin for WordPress.  Port can also be
2535used as a verb: to rewrite a piece of software for a different
2536platform/language.
2537</p>
2538<!-- /wp:paragraph -->
2539
2540<!-- wp:paragraph -->
2541<p>Dans le cadre de la communauté WordPress, un <strong>portage</strong> est un morceau de code qui a été réécrit pour être compatible avec WordPress. Par exemple, si quelqu’un a écrit une extension pour MoveableType, les utilisateurs de WordPress peuvent vouloir trouver un portage de cette extension pour WordPress. <br>Le <strong>portage informatique</strong> consiste à <em>porter</em> un logiciel en le  réécrivant pour une plate-forme/langue différente.</p>
2542<!-- /wp:paragraph -->
2543
2544<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2545<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/Porting">Porting at Wikipedia</a></li></ul>
2546<!-- /wp:list -->
2547
2548<!-- wp:list -->
2549<ul><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Portage_informatique" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Portage_informatique">Portage informatique</a> fr.Wikipedia.org</li></ul>
2550<!-- /wp:list -->
2551
2552<!-- wp:heading -->
2553<h2>Article</h2>
2554<!-- /wp:heading -->
2555
2556<!-- wp:paragraph {"backgroundColor":"pale-cyan-blue"} -->
2557<p class="has-pale-cyan-blue-background-color has-background">Also known as “articles” and sometimes incorrectly referred to as
2558“blogs”. In WordPress, “posts” are articles that you write to populate
2559your blog.
2560</p>
2561<!-- /wp:paragraph -->
2562
2563<!-- wp:paragraph -->
2564<p>Également appelé «&nbsp;billets&nbsp;» et parfois appelé à tort «&nbsp;blogs&nbsp;». Dans WordPress, les <strong>articles</strong> sont des contenus que vous écrivez pour développer votre blog.</p>
2565<!-- /wp:paragraph -->
2566
2567<!-- wp:heading -->
2568<h2>Slug de publication</h2>
2569<!-- /wp:heading -->
2570
2571<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2572<p class="has-vivid-green-cyan-background-color has-background">A few lowercase words separated by dashes, describing a post and
2573usually derived from the post title to create a user-friendly (that is,
2574readable and without confusing characters) <a href="https://codex.wordpress.org/Permalinks">permalink</a>. Post slug substitutes the "%posttitle%" placeholder in a <a href="https://codex.wordpress.org/Permalinks#Choosing_your_permalink_structure">custom permalink structure</a>. Post slug should not be changed and is especially useful if the post title tends to be long or changes frequently.
2575</p>
2576<!-- /wp:paragraph -->
2577
2578<!-- wp:paragraph -->
2579<p>Quelques mots minuscules séparés par des tirets, décrivant un article et généralement dérivés du titre de l’article pour créer un <a href="/support/article/using-permalinks/" data-type="URL" data-id="/support/article/using-permalinks/">lien permanent</a> convivial (c’est-à-dire lisible et sans caractères déroutants). Post slug remplace l’espace réservé «&nbsp;%posttitle%&nbsp;» dans une <a href="/support/article/using-permalinks/" data-type="URL" data-id="/support/article/using-permalinks/">structure de permalien personnalisée</a>. Le slug de publication ne doit pas être modifié et est particulièrement utile si le titre du message a tendance à être long ou à changer fréquemment.</p>
2580<!-- /wp:paragraph -->
2581
2582<!-- wp:heading -->
2583<h2>État des publications</h2>
2584<!-- /wp:heading -->
2585
2586<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2587<p class="has-vivid-green-cyan-background-color has-background">The status of a post, as set in the <a href="https://codex.wordpress.org/Administration_Panels">Administration Panel</a>, <a href="https://codex.wordpress.org/Write_Post_SubPanel">Write Post SubPanel</a> is either: <strong>Published</strong> (viewable by everyone), <strong>Draft</strong> (incomplete post viewable by anyone with proper <a href="https://codex.wordpress.org/User_Levels">user level</a>), or <strong>Private</strong> (viewable only to WordPress users at Administrator level).
2588</p>
2589<!-- /wp:paragraph -->
2590
2591<!-- wp:paragraph -->
2592<p>Le statut d’un article, tel que défini dans <a href="/support/article/administration-screens/" data-type="URL" data-id="/support/article/administration-screens/">l’écran d’administration</a>, <a href="/support/article/writing-posts/" data-type="URL" data-id="/support/article/writing-posts/">sous-panneau d’écriture</a> de l’article est soit&nbsp;: <strong>publié</strong> (visible par tout le monde), <strong>brouillon</strong> (article incomplet visible par toute personne disposant du <a href="/support/article/roles-and-capabilities/" data-type="URL" data-id="/support/article/roles-and-capabilities/">niveau d’utilisateur</a> approprié) ou <strong>privé</strong> (visible uniquement par les utilisateurs de WordPress au niveau administrateur).</p>
2593<!-- /wp:paragraph -->
2594
2595<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2596<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Post_Status">Post Status</a></li></ul>
2597<!-- /wp:list -->
2598
2599<!-- wp:list -->
2600<ul><li>Article en relation&nbsp;: <a href="/support/article/post-status/" data-type="URL" data-id="/support/article/post-status/">État des publications</a></li></ul>
2601<!-- /wp:list -->
2602
2603<!-- wp:heading {"backgroundColor":"vivid-green-cyan"} -->
2604<h2 class="has-vivid-green-cyan-background-color has-background">Post Type</h2>
2605<!-- /wp:heading -->
2606
2607<!-- wp:heading -->
2608<h2>Type de publication</h2>
2609<!-- /wp:heading -->
2610
2611<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2612<p class="has-vivid-green-cyan-background-color has-background">Post type refers to the various structured data that is maintained in
2613 the WordPress posts table.  Native (or built-in) registered post types
2614are <strong>post</strong>, <strong>page</strong>, <strong>attachment</strong>, <strong>revision</strong>, and <strong>nav-menu-item</strong>.  Custom post types are also supported in WordPress and can be defined with <a href="https://codex.wordpress.org/Function_Reference/register_post_type">register_post_type()</a>.
2615  Custom post types allow users to easily create and manage such things
2616as portfolios, projects, video libraries, podcasts, quotes, chats, and
2617whatever a user or developer can imagine.
2618</p>
2619<!-- /wp:paragraph -->
2620
2621<!-- wp:paragraph -->
2622<p>Le type de publication fait référence aux différentes données structurées qui sont conservées dans le tableau des publications WordPress. Les types d’articles enregistrés natifs (ou intégrés) sont l’<strong>article, la page, la pièce jointe, la révision</strong> et l’<strong>élément de menu de navigation</strong>. Les types de publication personnalisés sont également pris en charge dans WordPress et peuvent être définis avec <a href="https://developer.wordpress.org/reference/functions/register_post_type/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/register_post_type/">register_post_type()</a>. Les types de publication personnalisés permettent aux utilisateurs de créer et de gérer facilement des éléments tels que des portefeuilles, des projets, des vidéothèques, des podcasts, des citations, des chats et tout ce qu’un utilisateur ou un développeur peut imaginer.</p>
2623<!-- /wp:paragraph -->
2624
2625<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2626<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Post_Types">Post Types</a></li></ul>
2627<!-- /wp:list -->
2628
2629<!-- wp:list -->
2630<ul><li>Articles&nbsp; en relation&nbsp;: <a href="/support/article/post-types/" data-type="URL" data-id="/support/article/post-types/">Types de publications</a></li></ul>
2631<!-- /wp:list -->
2632
2633<!-- wp:heading -->
2634<h2>Requête</h2>
2635<!-- /wp:heading -->
2636
2637<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2638<p class="has-vivid-green-cyan-background-color has-background">The process behind the scenes. See below.&nbsp;:-)
2639</p>
2640<!-- /wp:paragraph -->
2641
2642<!-- wp:paragraph -->
2643<p>Le processus dans les coulisses. Voir ci-dessous.&nbsp;:-) </p>
2644<!-- /wp:paragraph -->
2645
2646<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2647<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <em><a href="https://codex.wordpress.org/Query_Overview">Query Overview</a></em>, <em><a href="https://codex.wordpress.org/Custom_Queries">Custom Queries</a></em>, <em><a href="https://codex.wordpress.org/Class_Reference/WP_Query">WP Query</a></em>, <em><a href="https://codex.wordpress.org/Class_Reference/WP_User_Query">WP User Query</a></em></li><li> See also: <em><a href="https://codex.wordpress.org/Glossary#Query_String">query string</a></em>, <em><a href="https://codex.wordpress.org/Glossary#Query_Variable">query variable</a></em></li></ul>
2648<!-- /wp:list -->
2649
2650<!-- wp:list -->
2651<ul><li>Articles en relation&nbsp;: <em><a href="https://codex.wordpress.org/Query_Overview">Query Overview</a></em>, <em><a href="https://codex.wordpress.org/Custom_Queries">Custom Queries</a></em>, <em><a href="https://developer.wordpress.org/reference/classes/wp_query/" data-type="URL" data-id="https://developer.wordpress.org/reference/classes/wp_query/">WP Query</a></em>, <em><a href="https://developer.wordpress.org/reference/classes/wp_user_query/" data-type="URL" data-id="https://developer.wordpress.org/reference/classes/wp_user_query/">WP User Query</a></em> (en anglais)</li><li>Voir aussi&nbsp;: <a href="#cha%c3%aene-de-requ%c3%aate" data-type="internal" data-id="#cha%c3%aene-de-requ%c3%aate">Chaîne de requête</a>, <a href="#variable-de-requ%c3%aate" data-type="internal" data-id="#variable-de-requ%c3%aate">Variable de requête</a> </li></ul>
2652<!-- /wp:list -->
2653
2654<!-- wp:heading -->
2655<h2>Chaîne de requête</h2>
2656<!-- /wp:heading -->
2657
2658<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2659<p class="has-vivid-green-cyan-background-color has-background">A sequence of codes in a <a href="http://en.wikipedia.org/wiki/Uniform_Resource_Identifier">Uniform Resource Identifier (URI)</a> that a web page uses to determine what dynamic data to display. The query string in a <a href="http://en.wikipedia.org/wiki/Uniform_Resource_Identifier">URI</a>
2660 comes after an initial question mark, and may contain several
2661parameters separated by ampersands.  WordPress uses query strings to
2662indicate criteria to search for specific posts or sets of posts in the
2663database. The use of query strings is generally believed to impede the
2664indexing of dynamic pages by search engines. For this reason, it is
2665often desirable to use a method such as <a href="https://codex.wordpress.org/Glossary#mod_rewrite">mod_rewrite</a> to reduce exposure of query strings to search engines and other site visitors.
2666</p>
2667<!-- /wp:paragraph -->
2668
2669<!-- wp:paragraph -->
2670<p>Une séquence de codes dans un <a href="https://fr.wikipedia.org/wiki/Uniform_Resource_Identifier" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Uniform_Resource_Identifier">URI (Uniform Resource Identifier)</a> est ce qu’une page Web utilise pour déterminer les données dynamiques à afficher. La chaîne de requête dans un <a href="https://fr.wikipedia.org/wiki/Uniform_Resource_Identifier" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Uniform_Resource_Identifier">URI</a> vient après un point d’interrogation initial et peut contenir plusieurs paramètres séparés par une esperluette (&amp;). WordPress utilise des chaînes de requête pour indiquer des critères de recherche de publications spécifiques ou d’ensembles de publications dans la base de données. On pense généralement que l’utilisation de chaînes de requête empêche l’indexation des pages dynamiques par les moteurs de recherche. Pour cette raison, il est souvent souhaitable d’utiliser une méthode telle que <a href="#mod_rewrite" data-type="internal" data-id="#mod_rewrite">mod_rewrite</a> pour réduire l’exposition des chaînes de requête aux moteurs de recherche et aux autres visiteurs du site.</p>
2671<!-- /wp:paragraph -->
2672
2673<!-- wp:heading -->
2674<h2>Variable de requête</h2>
2675<!-- /wp:heading -->
2676
2677<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2678<p class="has-vivid-green-cyan-background-color has-background">A variable passed through the <a href="https://codex.wordpress.org/Glossary#Query_string">query string</a>. For example, in the query string <em>?category_name=tech&amp;feed=atom</em>, there are two query variables: <em>category_name</em> with a value of "tech", and <em>feed</em> with a value of "atom".
2679</p>
2680<!-- /wp:paragraph -->
2681
2682<!-- wp:paragraph -->
2683<p>Une variable transmise par la <a href="#cha%c3%aene-de-requ%c3%aate" data-type="internal" data-id="#cha%c3%aene-de-requ%c3%aate">chaîne de requête</a>. Par exemple, dans la chaîne de requête <em>?category_name=tech&amp;feed=atom</em>, il y a deux variables de requête&nbsp;: <em>category_name</em> avec la valeur de «&nbsp;tech&nbsp;», et <em>feed</em> avec une valeur de «&nbsp;atom&nbsp;». </p>
2684<!-- /wp:paragraph -->
2685
2686<!-- wp:heading -->
2687<h2>QuickTag</h2>
2688<!-- /wp:heading -->
2689
2690<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2691<p class="has-vivid-green-cyan-background-color has-background">A <strong>Quicktag</strong> is a shortcut, or one-click button, that inserts
2692HTML code into your posts.  The &lt;em&gt; (emphasis) and &lt;/em&gt;
2693(stop emphasis) HTML tags are example of Quicktags.  Some Quicktags,
2694such as &lt;!--contactform--&gt;, insert HTML comment code that is used
2695by plugins to replace text or perform certain actions.
2696</p>
2697<!-- /wp:paragraph -->
2698
2699<!-- wp:paragraph -->
2700<p>Un <strong>Quicktag</strong> est un raccourci, ou un bouton en un clic, qui insère du code HTML dans vos publications. Les balises HTML &lt;em&gt;(italique) et &lt;/em&gt; (stop italique) sont des exemples de balises rapides. Certains Quicktags, tels que &lt;!--contactform--&gt;, insèrent du code de commentaire HTML utilisé par les extensions pour remplacer du texte ou effectuer certaines actions.</p>
2701<!-- /wp:paragraph -->
2702
2703<!-- wp:paragraph -->
2704<p><a href="#top" data-type="internal" data-id="#top">Retour vers le haut</a></p>
2705<!-- /wp:paragraph -->
2706
2707<!-- wp:heading -->
2708<h2>RDF</h2>
2709<!-- /wp:heading -->
2710
2711<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2712<p class="has-vivid-green-cyan-background-color has-background">Resource Description Framework. A language used to describe the
2713locations of resources on the web. WordPress can produce output in RDF
2714format that describes the locations of posts. Like RSS, RDF is used for
2715content syndication.
2716</p>
2717<!-- /wp:paragraph -->
2718
2719<!-- wp:paragraph -->
2720<p>Cadre de description des ressources. Un langage utilisé pour décrire les emplacements des ressources sur le Web. WordPress peut produire une sortie au format RDF qui décrit les emplacements des articles. Comme RSS, RDF est utilisé pour la syndication de contenu.</p>
2721<!-- /wp:paragraph -->
2722
2723<!-- wp:heading -->
2724<h2>Chemin relatif</h2>
2725<!-- /wp:heading -->
2726
2727<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2728<p class="has-vivid-green-cyan-background-color has-background">A <strong>relative path</strong> is the location of a file in relation to the
2729current working directory and does not begin with a slash (/).  This is
2730different from an <a href="https://codex.wordpress.org/Glossary#Absolute_Path">absolute path</a> which gives an exact location.
2731</p>
2732<!-- /wp:paragraph -->
2733
2734<!-- wp:paragraph -->
2735<p>Un <strong>chemin relatif </strong>est l’emplacement d’un fichier par rapport au répertoire de travail actuel et ne commence pas par une barre oblique (/). Ceci est différent d’un <a href="#chemin-absolu" data-type="internal" data-id="#chemin-absolu">chemin absolu</a> qui donne un emplacement exact.</p>
2736<!-- /wp:paragraph -->
2737
2738<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2739<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Absolute_Path">Absolute Path</a> </li><li> External links: <a href="http://en.wikipedia.org/wiki/Path_(computing)">Path_Computing at Wikipedia</a></li></ul>
2740<!-- /wp:list -->
2741
2742<!-- wp:list -->
2743<ul><li>Voir aussi&nbsp;: <a href="#chemin-absolu" data-type="internal" data-id="#chemin-absolu">Chemin absolu</a> </li><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Path" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Path">Path sur fr.wikipedia.org</a><a href="http://en.wikipedia.org/wiki/Path_(computing)">Path_Computing at Wikipedia</a> (en anglais)</li></ul>
2744<!-- /wp:list -->
2745
2746<!-- wp:heading -->
2747<h2>URI relative</h2>
2748<!-- /wp:heading -->
2749
2750<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2751<p class="has-vivid-green-cyan-background-color has-background">A relative URI (sometimes called a <strong>relative link</strong>) is a partial URI that is interpreted (resolved) relative to a <strong>base URI</strong>.
2752</p>
2753<!-- /wp:paragraph -->
2754
2755<!-- wp:paragraph -->
2756<p>Un <strong>URI relatif</strong> (parfois appelé <strong>lien relatif</strong>) est un URI partiel qui est interprété (résolu) par rapport à un <strong>URI de base</strong>.</p>
2757<!-- /wp:paragraph -->
2758
2759<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2760<p class="has-vivid-green-cyan-background-color has-background">On the World Wide Web, relative URIs come in two forms:
2761</p>
2762<!-- /wp:paragraph -->
2763
2764<!-- wp:paragraph -->
2765<p>Sur le World Wide Web, les URI relatifs se présentent sous deux formes&nbsp;:</p>
2766<!-- /wp:paragraph -->
2767
2768<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2769<p class="has-vivid-green-cyan-background-color has-background">A <strong>relative URI with an absolute path</strong> is interpreted relative to the domain root:
2770</p>
2771<!-- /wp:paragraph -->
2772
2773<!-- wp:paragraph -->
2774<p>Un <strong>URI relatif avec un chemin absolu</strong> est interprété par rapport à la racine du domaine&nbsp;:</p>
2775<!-- /wp:paragraph -->
2776
2777<!-- wp:preformatted -->
2778<pre class="wp-block-preformatted"> /images/icecream.jpg → http://domain.example<strong>/images/icecream.jpg</strong>
2779</pre>
2780<!-- /wp:preformatted -->
2781
2782<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2783<p class="has-vivid-green-cyan-background-color has-background">A <strong>relative URI with a relative path</strong> is interpreted relative to the URL of the current document. E.g., on the web page <em>http://domain.example/icecream/chocolate.html</em>,
2784</p>
2785<!-- /wp:paragraph -->
2786
2787<!-- wp:paragraph -->
2788<p>Un <strong>URI relatif avec un chemin relatif</strong> est interprété par rapport à l’URL du document actuel. Par exemple, sur la page Web <em>http://domain.example/icecream/chocolate.html</em>, </p>
2789<!-- /wp:paragraph -->
2790
2791<!-- wp:preformatted -->
2792<pre class="wp-block-preformatted"> <strong>strawberry.html</strong> → http://domain.example/icecream/<strong>strawberry.html</strong>
2793</pre>
2794<!-- /wp:preformatted -->
2795
2796<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2797<p class="has-vivid-green-cyan-background-color has-background"><a href="http://en.wikipedia.org/wiki/Uniform_Resource_Identifier#URI_resolution">Wikipedia: URI Resolution</a>
2798</p>
2799<!-- /wp:paragraph -->
2800
2801<!-- wp:paragraph -->
2802<p><a href="https://fr.wikipedia.org/wiki/Uniform_Resource_Identifier" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Uniform_Resource_Identifier">URI sur fr.wikipedia.org</a>, <a href="https://en.wikipedia.org/wiki/Uniform_Resource_Identifier#Resolution">Wikipedia: URI Resolution</a> (en anglais) <span class="has-inline-color has-vivid-red-color">lien français ajouté, lien anglais corrigé Patrice</span></p>
2803<!-- /wp:paragraph -->
2804
2805<!-- wp:heading -->
2806<h2>Recordset</h2>
2807<!-- /wp:heading -->
2808
2809<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2810<p class="has-vivid-green-cyan-background-color has-background"><strong>Recordset</strong> refers to the group of records or result returned from a database query.
2811</p>
2812<!-- /wp:paragraph -->
2813
2814<!-- wp:paragraph -->
2815<p><strong>Recordset</strong> fait référence au groupe d’enregistrements ou au résultat renvoyé par une requête de base de données.</p>
2816<!-- /wp:paragraph -->
2817
2818<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2819<ul class="has-vivid-green-cyan-background-color has-background"><li> See also <a href="https://codex.wordpress.org/Glossary#MySQL">MySQL</a>, <a href="https://codex.wordpress.org/Class_Reference/wpdb">wpdb</a> database class</li></ul>
2820<!-- /wp:list -->
2821
2822<!-- wp:list -->
2823<ul><li>Voir aussi&nbsp;: <a href="#mysql" data-type="internal" data-id="#mysql">MySQL</a>, <a href="https://developer.wordpress.org/reference/classes/wpdb/" data-type="URL" data-id="https://developer.wordpress.org/reference/classes/wpdb/">wpdb database class</a></li></ul>
2824<!-- /wp:list -->
2825
2826<!-- wp:heading -->
2827<h2>RSS</h2>
2828<!-- /wp:heading -->
2829
2830<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2831<p class="has-vivid-green-cyan-background-color has-background">"<em>Really Simple Syndication</em>": a format for syndicating many
2832types of content, including blog entries, torrent files, video clips on
2833news-like sites; specifically frequently updated content on a Web site,
2834and is also known as a type of "feed" or "aggregator".  An RSS feed can
2835contain a summary of content or the full text, and makes it easier for
2836people to keep up to date with sites they like in an automated manner
2837(much like e-mail).
2838</p>
2839<!-- /wp:paragraph -->
2840
2841<!-- wp:paragraph -->
2842<p>«&nbsp;<em><strong>R</strong>eally <strong>S</strong>imple <strong>S</strong>yndication</em>&nbsp;»&nbsp;est un format pour la syndication de nombreux types de contenu, y compris des entrées de blog, des fichiers torrent, des clips vidéo sur des sites de type news&nbsp;; contenu spécifiquement mis à jour fréquemment sur un site Web, et est également connu comme un type de «&nbsp;flux&nbsp;» ou «&nbsp;agrégateur&nbsp;». Un flux RSS peut contenir un résumé du contenu ou le texte intégral, et permet aux utilisateurs d’être informé des sites qu’ils aiment de manière automatisée (un peu comme le courrier électronique).</p>
2843<!-- /wp:paragraph -->
2844
2845<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2846<p class="has-vivid-green-cyan-background-color has-background">The content of the feed can be read by using software called an <a href="https://codex.wordpress.org/Glossary#News_reader">RSS or Feed reader</a>.
2847
2848Feed readers display hyperlinks, and include other metadata (information
2849 about information) that helps people decide whether they want to read
2850more, follow a link, or move on.
2851</p>
2852<!-- /wp:paragraph -->
2853
2854<!-- wp:paragraph -->
2855<p>Le contenu du flux peut être lu à l’aide d’un logiciel appelé <a href="#lecteur-d%e2%80%99actualit%c3%a9s" data-type="internal" data-id="#lecteur-d%e2%80%99actualit%c3%a9s">lecteur RSS ou lecteur d’actualité</a>. Les lecteurs de flux affichent des hyperliens et incluent d’autres métadonnées (informations sur les informations) qui aident les utilisateurs à décider s’ils souhaitent en savoir plus, suivre un lien ou passer à autre chose.</p>
2856<!-- /wp:paragraph -->
2857
2858<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2859<p class="has-vivid-green-cyan-background-color has-background">The original intent of RSS is to make information come to you
2860(via the feed reader) instead of you going out to look for it (via the
2861Web).
2862</p>
2863<!-- /wp:paragraph -->
2864
2865<!-- wp:paragraph -->
2866<p>L’intention originale de RSS est de faire en sorte que l’information vous parvienne (via le lecteur de flux) au lieu de sortir pour la chercher (via le Web).</p>
2867<!-- /wp:paragraph -->
2868
2869<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2870<p class="has-vivid-green-cyan-background-color has-background">Programs called news aggregators permit users to view many feeds at once, providing 'push' content constantly. See <a href="https://codex.wordpress.org/Category:Feeds">Category:Feeds</a> for Codex resources about bringing RSS feeds into WordPress. See also <a href="https://codex.wordpress.org/Glossary#RDF">RDF</a> Site Summary.
2871</p>
2872<!-- /wp:paragraph -->
2873
2874<!-- wp:paragraph -->
2875<p>Les programmes appelés agrégateurs/lecteurs d’actualités permettent aux utilisateurs de visualiser plusieurs flux à la fois, fournissant constamment du contenu «&nbsp;push&nbsp;». Voir <a href="https://codex.wordpress.org/Category:Feeds">Category:Feeds</a> pour les ressources Codex sur l’introduction de flux RSS dans WordPress. Voir également Résumé du site <a href="#rdf" data-type="internal" data-id="#rdf">RDF</a>.</p>
2876<!-- /wp:paragraph -->
2877
2878<!-- wp:heading -->
2879<h2>RTL</h2>
2880<!-- /wp:heading -->
2881
2882<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2883<p class="has-vivid-green-cyan-background-color has-background">A written language is <a href="http://en.wikipedia.org/wiki/Right-to-left">Right-to-left</a> when its script flows from the right side of the page to the left.
2884</p>
2885<!-- /wp:paragraph -->
2886
2887<!-- wp:paragraph -->
2888<p>Une langue écrite est <a href="https://fr.wikipedia.org/wiki/Texte_bidirectionnel" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Texte_bidirectionnel">de droite à gauche</a> lorsque son script coule du côté droit de la page vers la gauche.</p>
2889<!-- /wp:paragraph -->
2890
2891<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2892<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Right-to-Left_Language_Support">Right-to-Left Language Support</a></li></ul>
2893<!-- /wp:list -->
2894
2895<!-- wp:list -->
2896<ul><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Right-to-Left_Language_Support" data-type="URL" data-id="https://codex.wordpress.org/Right-to-Left_Language_Support">Support langage de droite à gauche</a> (en&nbsp;anglais), <a href="https://fr.wikipedia.org/wiki/Texte_bidirectionnel" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Texte_bidirectionnel">texte bidirectionnel</a> (fr.wikipedia.org)</li></ul>
2897<!-- /wp:list -->
2898
2899<!-- wp:heading -->
2900<h2>Robots.txt</h2>
2901<!-- /wp:heading -->
2902
2903<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2904<p class="has-vivid-green-cyan-background-color has-background">Web Robots are programs which traverse the Web automatically. They
2905are also called Web Wanderers, Web Crawlers, and Spiders. Search Engines
2906 are the main Web Robots.  Some Web Robots look for a file named <strong>robots.txt</strong> on your <a href="https://codex.wordpress.org/Glossary#Web_server">web server</a> to see what and where they should look for content and files on your web server. Some Web Robots ignore this file.
2907</p>
2908<!-- /wp:paragraph -->
2909
2910<!-- wp:paragraph -->
2911<p>Les robots web sont des programmes qui parcourent automatiquement le web. Ils sont également appelés Web Wanderers (vagabons du web), Web Crawlers (robots d’exploration du web) et Spiders (araignées). Les moteurs de recherche sont les principaux robots web. Certains robots web recherchent un fichier nommé <strong>robots.txt</strong> sur votre <a href="#serveur-web" data-type="internal" data-id="#serveur-web">serveur web</a> pour voir quoi et où ils doivent rechercher du contenu et des fichiers sur votre serveur web. Certains robots web ignorent ce fichier.</p>
2912<!-- /wp:paragraph -->
2913
2914<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2915<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Search_Engine_Optimization_for_WordPress">Search Engine Optimization for WordPress</a></li><li> External links: <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=40361">Google information about robots.txt</a>, <a href="http://www.robotstxt.org/wc/robots.html">The Web Robots Page</a></li></ul>
2916<!-- /wp:list -->
2917
2918<!-- wp:list -->
2919<ul><li>Articles en relation&nbsp;: <a href="/support/article/search-engine-optimization/" data-type="URL" data-id="/support/article/search-engine-optimization/">Optimisation du moteur de recherche</a></li><li>Liens externes&nbsp;: <a href="https://developers.google.com/search/docs/advanced/robots/create-robots-txt" data-type="URL" data-id="https://developers.google.com/search/docs/advanced/robots/create-robots-txt">Google&nbsp;: créer un fichier robot.txt</a>, <a href="http://www.robotstxt.org/robotstxt.html" data-type="URL" data-id="http://www.robotstxt.org/robotstxt.html">The Web Robots Page</a> (en anglais) <span class="has-inline-color has-vivid-red-color">lien corrigé - Patrice</span></li></ul>
2920<!-- /wp:list -->
2921
2922<!-- wp:heading -->
2923<h2>Rôle</h2>
2924<!-- /wp:heading -->
2925
2926<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2927<p class="has-vivid-green-cyan-background-color has-background">A <strong>role</strong> gives users permission to perform a group of tasks. When a user logs in and is authenticated, the user's role determines which <a href="https://codex.wordpress.org/Glossary#Capabilities">capabilities</a>
2928 the user has, and each capability is permission to perform one or more
2929types of task. All users with the same role normally have the same
2930capabilities. For example, users who have the Author role usually have
2931permission to edit their own posts, but not permission to edit other
2932users' posts. WordPress comes with six roles and over fifty capabilities
2933 in its role-based access system. Plugins can modify the system.
2934</p>
2935<!-- /wp:paragraph -->
2936
2937<!-- wp:paragraph -->
2938<p>Un <strong>rôle</strong> donne aux utilisateurs l’autorisation d’exécuter un groupe de tâches. Lorsqu’un utilisateur se connecte et est authentifié, le rôle de l’utilisateur détermine les <a href="#permissions" data-type="internal" data-id="#permissions">permissions</a> dont dispose l’utilisateur, et chaque permission donne l’autorisation d’effectuer un ou plusieurs types de tâches. Tous les utilisateurs ayant le même rôle ont normalement les mêmes permissions. Par exemple, les utilisateurs qui ont le rôle <strong><em>Auteur</em></strong> ont généralement l’autorisation de modifier leurs propres publications, mais pas l’autorisation de modifier les publications d’autres utilisateurs. WordPress est livré avec six rôles et plus de cinquante permissions dans son système d’accès basé sur les rôles. Les extensions peuvent modifier le système.</p>
2939<!-- /wp:paragraph -->
2940
2941<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2942<ul class="has-vivid-green-cyan-background-color has-background"><li> Related article: <a href="https://codex.wordpress.org/Roles_and_Capabilities">Roles and Capabilities</a></li><li> External link: <a href="http://en.wikipedia.org/wiki/Role-based_access_control">Role-based access control</a> (Wikipedia)</li></ul>
2943<!-- /wp:list -->
2944
2945<!-- wp:list -->
2946<ul><li>Article en relation&nbsp;: <a href="/support/article/roles-and-capabilities/" data-type="URL" data-id="/support/article/roles-and-capabilities/">Rôles et permisssions</a></li><li>Liens externes&nbsp;: <a href="https://fr.wikipedia.org/wiki/Contr%C3%B4le_d%27acc%C3%A8s_%C3%A0_base_de_r%C3%B4les" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Contr%C3%B4le_d%27acc%C3%A8s_%C3%A0_base_de_r%C3%B4les">Contrôle d’accès à base de rôles</a> (fr.Wikipedia.org), <a href="http://en.wikipedia.org/wiki/Role-based_access_control">Role-based access control</a> (en anglais)</li></ul>
2947<!-- /wp:list -->
2948
2949<!-- wp:heading -->
2950<h2>Écran</h2>
2951<!-- /wp:heading -->
2952
2953<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2954<p class="has-vivid-green-cyan-background-color has-background">In WordPress a <strong>screen</strong> is a web page used for managing part of a weblog (<a href="https://codex.wordpress.org/Glossary#Site">site</a>) or <a href="https://codex.wordpress.org/Glossary#Network">network</a>. The term 'screen' is used to avoid confusion with '<a href="https://codex.wordpress.org/Glossary#Page (type de publication)">page</a>', which has a specific and different meaning in WordPress. For example, the web page used to manage posts is known as the <a href="https://codex.wordpress.org/Posts_Screen">Posts Screen</a>. </p>
2955<!-- /wp:paragraph -->
2956
2957<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
2958<p class="has-luminous-vivid-amber-background-color has-background">Dans WordPress, un <strong>écran</strong> est une page Web utilisée pour gérer une partie d’un blog (<a href="#site" data-type="internal" data-id="#site">site</a>) ou d’un <a href="#r%c3%a9seau" data-type="internal" data-id="#r%c3%a9seau">réseau</a>. Le terme «&nbsp;écran&nbsp;» est utilisé pour éviter toute confiusion avec «&nbsp;<a href="#page (type de publication)" data-type="internal" data-id="#page">page</a>&nbsp;», qui a une signification spécifique et différente dans WordPress. Par exemple, la page Web utilisée pour gérer les articles est appelée <a href="/support/article/posts-screen/" data-type="URL" data-id="/support/article/posts-screen/">écran des articles</a>.</p>
2959<!-- /wp:paragraph -->
2960
2961<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
2962<ul class="has-vivid-green-cyan-background-color has-background"><li> Related article: <a href="https://codex.wordpress.org/Class_Reference/WP_Screen">Class_Reference/WP_Screen</a></li></ul>
2963<!-- /wp:list -->
2964
2965<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
2966<ul class="has-luminous-vivid-amber-background-color has-background"><li>Article en relation&nbsp;: <a href="https://codex.wordpress.org/Class_Reference/WP_Screen">Class_Reference/WP_Screen</a> (en anglais)</li></ul>
2967<!-- /wp:list -->
2968
2969<!-- wp:heading -->
2970<h2>Shell</h2>
2971<!-- /wp:heading -->
2972
2973<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2974<p class="has-vivid-green-cyan-background-color has-background">A <strong>shell</strong> is a program which interacts directly with an operating system such as MS-DOS, <a href="https://codex.wordpress.org/Glossary#Unix">Unix</a>/<a href="https://codex.wordpress.org/Glossary#Linux">Linux</a>, <a href="https://codex.wordpress.org/Glossary#Mac_OS_X">Mac OS X</a>, or others — but it is most commonly associated with <a href="https://codex.wordpress.org/Glossary#Unix">Unices</a>.
2975 It is often referred to as a 'console' or 'command line', because it is
2976 controlled using typed commands rather than mouse or graphical
2977interface input.
2978</p>
2979<!-- /wp:paragraph -->
2980
2981<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
2982<p class="has-luminous-vivid-amber-background-color has-background">Un <strong>shell</strong> est un programme qui interagit directement avec un système d’exploitation tel que MS-DOS, <a href="#unix" data-type="internal" data-id="#unix">Unix</a>/<a href="#linux" data-type="internal" data-id="#linux">Linux</a>, <a href="#mac-os-x" data-type="internal" data-id="#mac-os-x">Mac OS X</a> ou autres - mais il est le plus souvent associé à <a href="#unix" data-type="internal" data-id="#unix">Unices</a>. Elle est souvent appelée «&nbsp;console&nbsp;» ou «&nbsp;ligne de commande&nbsp;», car elle est contrôlée à l’aide de commandes typées plutôt que d’une entrée de souris ou d’interface graphique.</p>
2983<!-- /wp:paragraph -->
2984
2985<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2986<p class="has-vivid-green-cyan-background-color has-background">Most often, when interacting with a remote computer (as one would
2987 when configuring WordPress), an additional "faux" shell is involved
2988called <a href="https://codex.wordpress.org/Glossary#SSH">SSH</a>.
2989</p>
2990<!-- /wp:paragraph -->
2991
2992<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
2993<p class="has-luminous-vivid-amber-background-color has-background">Le plus souvent, lors de l’interaction avec un ordinateur distant (comme on le ferait lors de la configuration de WordPress), un «&nbsp;faux&nbsp;» shell supplémentaire est impliqué appelé <a href="#ssh" data-type="internal" data-id="#ssh">SSH</a>.</p>
2994<!-- /wp:paragraph -->
2995
2996<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
2997<p class="has-vivid-green-cyan-background-color has-background">Some popular shell programs are:
2998</p>
2999<!-- /wp:paragraph -->
3000
3001<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3002<p class="has-luminous-vivid-amber-background-color has-background">Certains programmes shell populaires sont&nbsp;:</p>
3003<!-- /wp:paragraph -->
3004
3005<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3006<ul class="has-vivid-green-cyan-background-color has-background"><li> <a href="http://www.gnu.org/software/bash/bash.html">Bash</a> (Bourne Again Shell)</li><li> <a href="http://tcsh.org/">Tcsh</a> (an expanded C Shell)</li><li> <a href="http://www.zsh.org/">Zsh</a></li></ul>
3007<!-- /wp:list -->
3008
3009<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
3010<ul class="has-luminous-vivid-amber-background-color has-background"><li><a href="http://www.gnu.org/software/bash/bash.html">Bash</a> (Bourne Again Shell)</li><li><a href="http://tcsh.org/">Tcsh</a> (un élargi C Shell)</li><li><a href="http://www.zsh.org/">Zsh</a></li></ul>
3011<!-- /wp:list -->
3012
3013<!-- wp:heading -->
3014<h2>Code court</h2>
3015<!-- /wp:heading -->
3016
3017<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3018<p class="has-vivid-green-cyan-background-color has-background">A <a href="https://codex.wordpress.org/Shortcode">Shortcode</a> is a technique for embedding a snippet of <a href="https://codex.wordpress.org/Glossary#PHP">PHP</a> code into the body of a page or other content item.
3019</p>
3020<!-- /wp:paragraph -->
3021
3022<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3023<p class="has-luminous-vivid-amber-background-color has-background">Un <a href="https://codex.wordpress.org/fr:Shortcode" data-type="URL" data-id="https://codex.wordpress.org/fr:Shortcode">code court</a> est une technique pour intégrer un extrait de code <a href="#php" data-type="internal" data-id="#php">PHP</a> dans le corps d'une page ou d'un autre élément de contenu. </p>
3024<!-- /wp:paragraph -->
3025
3026<!-- wp:heading -->
3027<h2>Colonne latérale</h2>
3028<!-- /wp:heading -->
3029
3030<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3031<p class="has-vivid-green-cyan-background-color has-background">A <strong>sidebar</strong> is a vertical column provided by a <a href="https://codex.wordpress.org/Glossary#Theme">theme</a> for displaying information other than the main <a href="https://codex.wordpress.org/Glossary#Content">content</a> of the web page. Themes usually provide at least one sidebar at the left or right of the content. Sidebars usually contain <a href="https://codex.wordpress.org/Glossary#Widget">widgets</a> that an administrator of the site can customize. </p>
3032<!-- /wp:paragraph -->
3033
3034<!-- wp:paragraph -->
3035<p>Une colonne latérale est une colonne verticale fournie par un <a href="#th%c3%a8me" data-type="internal" data-id="#th%c3%a8me">thème</a> pour afficher des informations autres que le <a href="#contenu" data-type="internal" data-id="#contenu">contenu</a> principal de la page Web. Les thèmes fournissent généralement au moins une barre latérale à gauche ou à droite du contenu. Les barres latérales contiennent généralement des <a href="#widget" data-type="internal" data-id="#widget">widgets</a> qu’un administrateur du site peut personnaliser.</p>
3036<!-- /wp:paragraph -->
3037
3038<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3039<p class="has-vivid-green-cyan-background-color has-background">In a theme, sidebars are generated by a <a href="https://codex.wordpress.org/Glossary#Template">template</a> file, typically named <em>sidebar.php</em>.
3040</p>
3041<!-- /wp:paragraph -->
3042
3043<!-- wp:paragraph -->
3044<p>Dans un thème, les colonnes latérales sont générées par un fichier <a href="#mod%c3%a8le" data-type="internal" data-id="#mod%c3%a8le">modèle</a>, généralement nommé <em>sidebar.php</em>. </p>
3045<!-- /wp:paragraph -->
3046
3047<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3048<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Footer_area">Footer area</a></li><li> Related articles: <a href="https://codex.wordpress.org/Sidebars">Sidebars</a>, <a href="https://codex.wordpress.org/Templates">Templates</a>, <a href="https://codex.wordpress.org/Customizing_Your_Sidebar">Customizing Your Sidebar</a>, <a href="https://codex.wordpress.org/Stepping_Into_Templates">Stepping Into Templates</a>, <a href="https://codex.wordpress.org/Template_Hierarchy">Template Hierarchy</a></li></ul>
3049<!-- /wp:list -->
3050
3051<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
3052<ul class="has-luminous-vivid-amber-background-color has-background"><li>Voir aussi&nbsp;: <a href="#zone-de-pied-de-page" data-type="internal" data-id="#zone-de-pied-de-page">Zone de pied de page</a></li><li>Articles en relation&nbsp;: <a href="#colonne-lat%c3%a9rale" data-type="internal" data-id="#colonne-lat%c3%a9rale">Colonne latérale</a>, <a href="#th%c3%a8me" data-type="internal" data-id="#th%c3%a8me">thème</a>, <a href="/support/article/settings-sidebar/" data-type="URL" data-id="/support/article/settings-sidebar/">Personnaliser votre colonne latérale</a>, <a href="https://codex.wordpress.org/Stepping_Into_Templates">Stepping Into Templates</a> (en anglais), <a href="https://codex.wordpress.org/Template_Hierarchy">Template Hierarchy</a> (en anglais)</li></ul>
3053<!-- /wp:list -->
3054
3055<!-- wp:list {"backgroundColor":"pale-pink"} -->
3056<ul class="has-pale-pink-background-color has-background"><li>NB : la page <strong>Page/Post Settings Sidebar</strong> (Personnaliser votre colonne latérale) a été créé en EN le 26 novembre 2020 - Patrice</li><li><a href="https://developerka.org/helphub-updates/?locale=fr">https://developerka.org/helphub-updates/?locale=fr</a></li><li><a href="https://wordpress.org/support/article/settings-sidebar/">https://wordpress.org/support/article/settings-sidebar/</a> cf le journal en fin de page.</li></ul>
3057<!-- /wp:list -->
3058
3059<!-- wp:heading -->
3060<h2>Site</h2>
3061<!-- /wp:heading -->
3062
3063<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3064<p class="has-vivid-green-cyan-background-color has-background">In the WordPress user interface, a <strong>site</strong> can simply be the website created by WordPress, or it can be a virtual website created as part of a <a href="https://codex.wordpress.org/Glossary#Network">network</a> by the <a href="https://codex.wordpress.org/Glossary#Multisite">multisite</a>
3065 feature. A site in a network is virtual in the sense that it does not
3066have its own directory on the server, although it has its own URL and it
3067 might have its own domain name.
3068</p>
3069<!-- /wp:paragraph -->
3070
3071<!-- wp:paragraph -->
3072<p>Dans l’interface utilisateur de WordPress, un site peut simplement être le site Web créé par WordPress, ou il peut s’agir d’un site Web virtuel créé dans le cadre d'un <a href="#r%c3%a9seau" data-type="internal" data-id="#r%c3%a9seau">réseau</a> par la fonctionnalité <a href="#multisite" data-type="internal" data-id="#multisite">multisite</a>. Un site dans un réseau est virtuel en ce sens qu'il n'a pas son propre répertoire sur le serveur, bien qu'il ait sa propre URL et qu'il puisse avoir son propre nom de domaine.</p>
3073<!-- /wp:paragraph -->
3074
3075<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3076<p class="has-vivid-green-cyan-background-color has-background">In WordPress code the site is the website created by WordPress.
3077If multisite is in use, then the site is the network website and each
3078virtual website is known as a <em>blog</em>.
3079</p>
3080<!-- /wp:paragraph -->
3081
3082<!-- wp:paragraph -->
3083<p>Dans le code WordPress, le site est le site Web créé par WordPress. Si le multisite est utilisé, le site est le site Web du réseau et chaque site Web virtuel est appelé <em>blog</em>.</p>
3084<!-- /wp:paragraph -->
3085
3086<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3087<ul class="has-vivid-green-cyan-background-color has-background"><li> Related article: <a href="https://codex.wordpress.org/Create_A_Network">Create A Network</a></li></ul>
3088<!-- /wp:list -->
3089
3090<!-- wp:list -->
3091<ul><li>Article en relation&nbsp;: <a href="/support/article/create-a-network/" data-type="URL" data-id="/support/article/create-a-network/">Créer un réseau multisite</a></li></ul>
3092<!-- /wp:list -->
3093
3094<!-- wp:heading -->
3095<h2>Slug</h2>
3096<!-- /wp:heading -->
3097
3098<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3099<p class="has-vivid-green-cyan-background-color has-background">A <strong>slug</strong> is a few words that describe a post or a page. Slugs
3100are usually a URL friendly version of the post title (which has been
3101automatically generated by WordPress), but a slug can be anything you
3102like.  Slugs are meant to be used with <a href="https://codex.wordpress.org/Glossary#Permalink">permalinks</a> as they help describe what the content at the URL is.
3103</p>
3104<!-- /wp:paragraph -->
3105
3106<!-- wp:paragraph -->
3107<p>Un <strong>slug</strong> est une suite de quelques mots qui décrivent un article ou une page. Les slugs sont généralement une version conviviale du titre de l’article (qui a été automatiquement généré par WordPress), mais un slug peut être tout ce que vous aimez. Les slugs sont destinés à être utilisés avec des <a href="#permalien" data-type="internal" data-id="#permalien">permaliens</a> car ils aident à décrire le contenu de l’URL.</p>
3108<!-- /wp:paragraph -->
3109
3110<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3111<p class="has-vivid-green-cyan-background-color has-background">Example post permalink: <em><a href="http://wordpress.org/development/2006/06/wordpress-203/">http://wordpress.org/development/2006/06/wordpress-203/</a></em>
3112</p>
3113<!-- /wp:paragraph -->
3114
3115<!-- wp:paragraph -->
3116<p>Exemple de permalien pour un article&nbsp;: <em><a href="http://wordpress.org/development/2006/06/wordpress-203/">http://wordpress.org/development/2006/06/wordpress-203/</a></em> </p>
3117<!-- /wp:paragraph -->
3118
3119<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3120<p class="has-vivid-green-cyan-background-color has-background">The slug for that post is "wordpress-203".
3121</p>
3122<!-- /wp:paragraph -->
3123
3124<!-- wp:paragraph -->
3125<p>Le slug pour cet article est «&nbsp;wordpress-203&nbsp;». </p>
3126<!-- /wp:paragraph -->
3127
3128<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3129<p class="has-vivid-green-cyan-background-color has-background">Slugs are also used for post types, categories, tags, etc. Like
3130post and page slugs, this is usually for creating URL friendly versions
3131of these items.
3132</p>
3133<!-- /wp:paragraph -->
3134
3135<!-- wp:paragraph -->
3136<p>Les slugs sont également utilisés pour les types de publication, les catégories, les balises, etc. Comme les slugs de publication et de page, il s’agit généralement de créer des versions conviviales pour les URL de ces éléments. </p>
3137<!-- /wp:paragraph -->
3138
3139<!-- wp:heading -->
3140<h2>Émoticônes</h2>
3141<!-- /wp:heading -->
3142
3143<!-- wp:image {"linkDestination":"custom"} -->
3144<figure class="wp-block-image"><a href="https://codex.wordpress.org/File:icon_wink.gif"><img src="https://codex.wordpress.org/images/4/4b/icon_wink.gif" alt="Wink Icon"/></a></figure>
3145<!-- /wp:image -->
3146
3147<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3148<p class="has-vivid-green-cyan-background-color has-background">Smileys (also called Smilies or Emoticons) are stylized
3149representations of a human face, usually displayed as yellow buttons
3150with two dots for the eyes, and a half mouth. Smileys are often used in
3151WordPress Plugins.  By default, WordPress automatically converts text
3152smileys to graphic images. When you type ;-) in your post you see  when you preview or publish your post.
3153</p>
3154<!-- /wp:paragraph -->
3155
3156<!-- wp:paragraph -->
3157<p>Les <strong>Smileys</strong> (également appelés smilies ou émoticônes) sont des représentations stylisées d’un visage humain, généralement affichées sous forme de boutons jaunes avec deux points pour les yeux et une demi-bouche. Les smileys sont souvent utilisés dans les extensions WordPress. Par défaut, WordPress convertit automatiquement les smileys de texte en images graphiques. Lorsque vous tapez <code>;-)</code> dans votre message, vous voyez ;-) lorsque vous prévisualisez ou publiez votre message.</p>
3158<!-- /wp:paragraph -->
3159
3160<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3161<p class="has-vivid-green-cyan-background-color has-background">Related article: <a href="https://codex.wordpress.org/Using_Smilies">Using Smilies</a>
3162</p>
3163<!-- /wp:paragraph -->
3164
3165<!-- wp:paragraph -->
3166<p>Articles en relation&nbsp;: <a href="/support/article/using-smilies/" data-type="URL" data-id="/support/article/using-smilies/">Using Smilies</a> (en anglais), <a href="/support/article/emoji/" data-type="URL" data-id="/support/article/emoji/">Les émojis</a>, <a href="https://fr.wikipedia.org/wiki/%C3%89motic%C3%B4ne" data-type="URL" data-id="https://fr.wikipedia.org/wiki/%C3%89motic%C3%B4ne">Émoticône</a></p>
3167<!-- /wp:paragraph -->
3168
3169<!-- wp:heading -->
3170<h2>Indésirable</h2>
3171<!-- /wp:heading -->
3172
3173<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
3174<p class="has-light-green-cyan-background-color has-background">Once upon a time, <a href="http://www.hormel.com">SPAM</a>
3175 was an animal by-product that came in a can and was fodder for many
3176Monty Python sketches, but since the world-wide adoption of the internet
3177 as an integral part of daily life, Spam has become synonymous with what
3178 is wrong with the internet. Spam, in general terms, is an email or
3179other forms of unsolicited advertising. Spam is very easy to spread
3180throughout the internet, and works on the principle that if you send out
3181 thousands, or hundreds of thousands of unsolicited advertisements,
3182scams, or other questionable methods of making money, that you only need
3183 a very small percentage of people to be fooled and you will make lots
3184of money.
3185</p>
3186<!-- /wp:paragraph -->
3187
3188<!-- wp:paragraph -->
3189<p>Autrefois, le <a href="https://fr.wikipedia.org/wiki/Spam" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Spam">SPAM</a> était un sous-produit animal qui venait dans une boîte et était répété de nombreuses fois dans <a href="https://fr.wikipedia.org/wiki/Spam#Origine_du_terme_%C2%AB_spam_%C2%BB" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Spam#Origine_du_terme_%C2%AB_spam_%C2%BB">un sketch de Monty Python</a>, mais depuis l’adoption mondiale d’Internet comme partie intégrante de la vie quotidienne, le Spam est devenu synonyme de ce qui est faux avec Internet. Le spam, appelé aussi <strong>indésirable</strong> ou <strong><a href="https://fr.wikipedia.org/wiki/Spam#%C2%AB_Pourriel_%C2%BB_et_autres_mots" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Spam#%C2%AB_Pourriel_%C2%BB_et_autres_mots">pourriel</a></strong> voire même <strong>poluriel</strong> en français, est un e-mail ou d’autres formes de publicité non sollicitée. Les <em>indésirables</em> sont très faciles à diffuser sur Internet et fonctionnent sur le principe que si vous envoyez des milliers, voire des centaines de milliers de publicités non sollicitées, d’escroqueries ou d’autres méthodes douteuses pour gagner de l’argent, vous n’avez besoin que d’un très petit pourcentage de personnes. soit dupe et vous ferez beaucoup d’argent.</p>
3190<!-- /wp:paragraph -->
3191
3192<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
3193<p class="has-light-green-cyan-background-color has-background">Common spam these days comes from online gambling sites and those
3194 trying to sell drugs for "male enhancement." Lately, web logs, or
3195blogs, as we call them, have been targeted by spammers to try to
3196increase their site ratings in the search engines. Spammers use various
3197methods to distribute their electronic junk mail, and employ bots, or
3198computer programs to quickly and easily send email or comments to
3199millions of addresses and <a href="https://codex.wordpress.org/Glossary#IP_address">IPs</a> all over the world.
3200</p>
3201<!-- /wp:paragraph -->
3202
3203<!-- wp:paragraph -->
3204<p>Les indésirables courants de nos jours proviennent de sites de jeux d’argent en ligne et de ceux qui essaient de vendre des médicaments pour «&nbsp;l’amélioration masculine&nbsp;». Dernièrement, les journaux Web ou les blogs, comme nous les appelons, ont été ciblés par les spammeurs pour tenter d’augmenter leur classement dans les moteurs de recherche. Les spammeurs utilisent diverses méthodes pour distribuer leurs courriers électroniques indésirables et utilisent des robots ou des programmes informatiques pour envoyer rapidement et facilement des e-mails ou des commentaires à des millions d’adresses et d’<a href="#adresse-ip" data-type="internal" data-id="#adresse-ip">adresses IP</a> dans le monde entier.</p>
3205<!-- /wp:paragraph -->
3206
3207<!-- wp:paragraph {"backgroundColor":"light-green-cyan"} -->
3208<p class="has-light-green-cyan-background-color has-background">Spammers can be difficult to track down as they often hijack peoples' email and <a href="https://codex.wordpress.org/Glossary#IP_address">IP</a> addresses. When this happens, it may appear a friend sent you the spam, but in fact, the spammer's <a href="http://en.wikipedia.org/wiki/Internet_bot">bot</a> grabbed your friend's email address and used it to hide the true source of the spam. WordPress <a href="https://codex.wordpress.org/Glossary#Developer">developers</a> and community members are constantly working on more and better ways to combat these annoying <strong>spammers</strong>  as they clog the internet with their garbage. You can help by offering  your talents, ideas, suggestions, or just by being vigilant and  installing any of the <a href="https://codex.wordpress.org/Combating_Comment_Spam">currently-available spam combating tools</a>. </p>
3209<!-- /wp:paragraph -->
3210
3211<!-- wp:paragraph -->
3212<p>Les spammeurs peuvent être difficiles à localiser car ils détournent souvent les adresses e-mail et <a href="#adresse-ip" data-type="internal" data-id="#adresse-ip">IP</a> des utilisateurs. Lorsque cela se produit, il peut sembler qu’un ami vous ait envoyé le <a href="https://fr.wikipedia.org/wiki/Spam" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Spam">pourriel</a>, mais en fait, le <a href="https://fr.wikipedia.org/wiki/Spambot" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Spambot">spambot</a> a saisi l’adresse e-mail de votre ami et l’a utilisée pour masquer la véritable source du pourriel. Les <a href="#développeur" data-type="internal" data-id="#développeur">développeurs</a> de WordPress et les membres de la communauté travaillent constamment sur des moyens plus nombreux et meilleurs pour lutter contre ces spammeurs ennuyeux alors qu’ils obstruent Internet avec leurs ordures. Vous pouvez aider en offrant vos talents, vos idées, vos suggestions ou simplement en étant vigilant et en installant l’un des outils de lutte contre les indésirables actuellement disponibles.</p>
3213<!-- /wp:paragraph -->
3214
3215<!-- wp:list -->
3216<ul><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Spam" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Spam">SPAM sur Wikipedia</a></li></ul>
3217<!-- /wp:list -->
3218
3219<!-- wp:heading -->
3220<h2>SSH</h2>
3221<!-- /wp:heading -->
3222
3223<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3224<p class="has-vivid-green-cyan-background-color has-background"><strong>SSH</strong> stands for Secure Shell. It is a communication protocol
3225for connecting to remote computers over TCP/IP. Various authentication
3226methods can be used which make SSH more secure than <a href="https://codex.wordpress.org/Glossary#Telnet">Telnet</a>.
3227</p>
3228<!-- /wp:paragraph -->
3229
3230<!-- wp:paragraph -->
3231<p><strong>SSH</strong> signifie <strong>S</strong>ecure <strong>Sh</strong>ell. Il s’agit d’un protocole de communication permettant de se connecter à des ordinateurs distants via TCP/IP. Diverses méthodes d’authentification peuvent être utilisées, ce qui rend SSH plus sécurisé que <a href="#telnet" data-type="internal" data-id="#telnet">Telnet</a>.</p>
3232<!-- /wp:paragraph -->
3233
3234<!-- wp:heading -->
3235<h2>SSL</h2>
3236<!-- /wp:heading -->
3237
3238<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3239<p class="has-vivid-green-cyan-background-color has-background"><strong>SSL</strong> stands for Secure Sockets Layer and is the predecessor to
3240Transport Layer Security. These are cryptographic protocols for secure
3241communications across an unsecured network like the Internet.
3242</p>
3243<!-- /wp:paragraph -->
3244
3245<!-- wp:paragraph -->
3246<p><strong>SSL</strong> signifie <strong>S</strong>ecure <strong>S</strong>ockets <strong>L</strong>ayer et est le prédécesseur de <strong>T</strong>ransport <strong>L</strong>ayer <strong>S</strong>ecurity. Ce sont des protocoles cryptographiques pour des communications sécurisées sur un réseau non sécurisé comme Internet.</p>
3247<!-- /wp:paragraph -->
3248
3249<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3250<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/Secure_Sockets_Layer">SSL at Wikipedia</a></li></ul>
3251<!-- /wp:list -->
3252
3253<!-- wp:list -->
3254<ul><li>Lien externe&nbsp;: <a href="http://en.wikipedia.org/wiki/Secure_Sockets_Layer">SSL at Wikipedia</a> (en anglais), <a href="https://fr.wikipedia.org/wiki/SSL" data-type="URL" data-id="https://fr.wikipedia.org/wiki/SSL">SSL sur wikipedia</a>, <a href="https://fr.wikipedia.org/wiki/Transport_Layer_Security" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Transport_Layer_Security">TLS sur Wikipedia</a></li></ul>
3255<!-- /wp:list -->
3256
3257<!-- wp:heading -->
3258<h2>Statistiques</h2>
3259<!-- /wp:heading -->
3260
3261<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3262<p class="has-vivid-green-cyan-background-color has-background"><strong>Stats</strong> are a record showing how many views and visitors a
3263WordPress blog or website gets during a set period of time. Stats also
3264show where in the world your viewers are.
3265</p>
3266<!-- /wp:paragraph -->
3267
3268<!-- wp:paragraph -->
3269<p>Les <strong>Statistiques</strong> sont un enregistrement indiquant le nombre de vues et de visiteurs d’un blog ou d’un site Web WordPress pendant une période donnée. Les statistiques indiquent également où se trouvent vos spectateurs dans le monde.</p>
3270<!-- /wp:paragraph -->
3271
3272<!-- wp:heading -->
3273<h2>Chaîne</h2>
3274<!-- /wp:heading -->
3275
3276<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3277<p class="has-vivid-green-cyan-background-color has-background">In computer science a string is any finite sequence of characters
3278(i.e., letters, numerals, symbols and punctuation marks).
3279Typically, programmers must enclose strings in quotation marks for the
3280data to be recognized as a string and not a number or variable name.
3281</p>
3282<!-- /wp:paragraph -->
3283
3284<!-- wp:paragraph -->
3285<p>En informatique, une chaîne est une séquence finie de caractères (c’est-à-dire des lettres, des chiffres, des symboles et des signes de ponctuation). En règle générale, les programmeurs doivent placer des chaînes entre guillemets pour que les données soient reconnues comme une chaîne et non comme un nombre ou un nom de variable.</p>
3286<!-- /wp:paragraph -->
3287
3288<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3289<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/String_(computer_science)">String at Wikipedia</a></li></ul>
3290<!-- /wp:list -->
3291
3292<!-- wp:list -->
3293<ul><li>Liens externes&nbsp;: <a href="http://en.wikipedia.org/wiki/String_(computer_science)">String at Wikipedia</a> (en anglais), <a href="https://fr.wikipedia.org/wiki/Cha%C3%AEne_de_caract%C3%A8res" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Cha%C3%AEne_de_caract%C3%A8res">Chaîne de caractères sur fr.wikipedia.org</a></li></ul>
3294<!-- /wp:list -->
3295
3296<!-- wp:heading -->
3297<h2>Étiquettes de structure</h2>
3298<!-- /wp:heading -->
3299
3300<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3301<p class="has-vivid-green-cyan-background-color has-background">These tags are used to customize WordPress permalinks. Structure tags are:
3302%year%,&nbsp;%day%,&nbsp;%hour%,&nbsp;%minute%,&nbsp;%second%,&nbsp;%post_id%,&nbsp;%postname%,&nbsp;%category% and&nbsp;%author%.
3303End permalink structure with either&nbsp;%post_id% or&nbsp;%postname%, so that each permalink points to an individual post.
3304</p>
3305<!-- /wp:paragraph -->
3306
3307<!-- wp:paragraph -->
3308<p>Ces balises sont utilisées pour personnaliser les permaliens WordPress. Les balises de structure sont&nbsp;: %year%,&nbsp;%day%,&nbsp;%hour%,&nbsp;%minute%,&nbsp;%second%,&nbsp;%post_id%,&nbsp;%postname%,&nbsp;%category% et&nbsp;%author%.  Terminer la structure de permalien avec soit&nbsp;%post_id% ou&nbsp;%postname%, de sorte que chaque permalien pointe vers une publication individuelle.</p>
3309<!-- /wp:paragraph -->
3310
3311<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3312<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Permalinks">Permalinks</a></li></ul>
3313<!-- /wp:list -->
3314
3315<!-- wp:list -->
3316<ul><li>Article en relation&nbsp;<a href="/support/article/using-permalinks/" data-type="URL" data-id="/support/article/using-permalinks/">Utilisation des permaliens</a></li></ul>
3317<!-- /wp:list -->
3318
3319<!-- wp:heading -->
3320<h2>Subversion</h2>
3321<!-- /wp:heading -->
3322
3323<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3324<p class="has-vivid-green-cyan-background-color has-background"><a href="http://subversion.tigris.org/">Subversion</a> is an <a href="https://codex.wordpress.org/Glossary#Open_Source">open-source</a> <a href="http://en.wikipedia.org/wiki/Revision_control">version control</a> software tool used by the <a href="https://codex.wordpress.org/Copyright_Holders">WordPress Developers</a> to maintain and track the changes and updates to the various WordPress versions.
3325</p>
3326<!-- /wp:paragraph -->
3327
3328<!-- wp:paragraph -->
3329<p><strong><a href="http://subversion.apache.org/" data-type="URL" data-id="http://subversion.apache.org/">Subversion</a></strong> est un outil logiciel de <a href="https://fr.wikipedia.org/wiki/Gestion_de_versions" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Gestion_de_versions">contrôle de version</a>&nbsp; <a href="#open-source" data-type="internal" data-id="#open-source">open source</a> utilisé par les <a href="https://codex.wordpress.org/Copyright_Holders" data-type="URL" data-id="https://codex.wordpress.org/Copyright_Holders">développeurs WordPress</a> pour maintenir et suivre les modifications et les mises à jour des différentes versions de WordPress.</p>
3330<!-- /wp:paragraph -->
3331
3332<!-- wp:paragraph {"backgroundColor":"pale-pink"} -->
3333<p class="has-pale-pink-background-color has-background">le lien vers Subversion de la version anglaise semble HS, celui dans la page Codex est à jour. Je l’ai donc mis à la place.  Patrice</p>
3334<!-- /wp:paragraph -->
3335
3336<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3337<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Using_Subversion">Using Subversion</a></li><li> External links: <a href="http://wordpress.org/download/svn/">Subversion access at wordpress.org</a><span class="has-inline-color has-vivid-red-color"></span>, <a href="http://svnbook.red-bean.com/">Subversion book at red-bean.com</a></li></ul>
3338<!-- /wp:list -->
3339
3340<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
3341<ul class="has-luminous-vivid-amber-background-color has-background"><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Using_Subversion">Using Subversion</a> (en anglais), <a href="http://subversion.apache.org/" data-type="URL" data-id="http://subversion.apache.org/">site officiel de Subversion</a>, <span class="has-inline-color has-vivid-red-color">ce dernier lien c’est ce même lien dans le texte - Patrice</span></li><li>Liens externes&nbsp;: <a href="http://wordpress.org/download/svn/">Subversion access at wordpress.org</a> <span class="has-inline-color has-vivid-red-color">(lien apparement HS),</span> <a href="http://svnbook.red-bean.com/">Gestion de versions avec Subversion</a></li></ul>
3342<!-- /wp:list -->
3343
3344<!-- wp:heading -->
3345<h2>SVC</h2>
3346<!-- /wp:heading -->
3347
3348<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3349<p class="has-vivid-green-cyan-background-color has-background"><strong>SVC</strong> stands for Switched Virtual Circuit. An SVC is a virtual
3350circuit that is temporary turned on during a session of data transfer.
3351</p>
3352<!-- /wp:paragraph -->
3353
3354<!-- wp:paragraph -->
3355<p><strong>SVC</strong> est l’acronyme de <em><strong>S</strong>witched <strong>V</strong>irtual <strong>C</strong>ircuit</em> qui signifie <strong>C</strong>ircuit <strong>V</strong>irtuel Commuté. Un SVC est un circuit virtuel qui est temporairement activé pendant une session de transfert de données. </p>
3356<!-- /wp:paragraph -->
3357
3358<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3359<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/Virtual_circuit">Virtual circuit at Wikipedia</a></li></ul>
3360<!-- /wp:list -->
3361
3362<!-- wp:list -->
3363<ul><li>Lien externe&nbsp;: <a href="http://en.wikipedia.org/wiki/Virtual_circuit">Virtual circuit at Wikipedia</a> (en anglais), <a href="https://fr.wikipedia.org/wiki/Circuit_virtuel" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Circuit_virtuel">Circuit Virtuel sur fr.wikipedia.org</a></li></ul>
3364<!-- /wp:list -->
3365
3366<!-- wp:heading -->
3367<h2>Syndication</h2>
3368<!-- /wp:heading -->
3369
3370<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3371<p class="has-vivid-green-cyan-background-color has-background">See RSS: <a href="https://codex.wordpress.org/Glossary#RSS">Really Simple Syndication</a>
3372</p>
3373<!-- /wp:paragraph -->
3374
3375<!-- wp:paragraph -->
3376<p>Voir RSS&nbsp;: <a href="#rss" data-type="internal" data-id="#rss">Really Simple Syndication</a> </p>
3377<!-- /wp:paragraph -->
3378
3379<!-- wp:paragraph -->
3380<p><a href="https://codex.wordpress.org/Glossary#top">Retour vers le haut</a></p>
3381<!-- /wp:paragraph -->
3382
3383<!-- wp:heading -->
3384<h2>Étiquettes</h2>
3385<!-- /wp:heading -->
3386
3387<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3388<p class="has-vivid-green-cyan-background-color has-background">A Tag is a keyword which describes all or part of a Post. Think of it like a <a href="https://codex.wordpress.org/Glossary#Category">Category</a>,
3389 but smaller in scope. A Post may have several tags, many of which
3390relate to it only peripherally. Like Categories, Tags are usually linked
3391 to a page which shows all Posts having the same Tag. Tags can be
3392created on-the-fly by simply typing them into the <a href="https://codex.wordpress.org/Writing_Posts#Post_Tags">Tag field</a>. By default, tags can be assigned only to the <em>Post</em> and custom <a href="https://codex.wordpress.org/Post_types">post types</a>.
3393</p>
3394<!-- /wp:paragraph -->
3395
3396<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3397<p class="has-luminous-vivid-amber-background-color has-background">Une étiquette est un mot-clé qui décrit tout ou partie d’une publication. Pensez-y comme une <a href="#cat%c3%a9gorie" data-type="internal" data-id="#cat%c3%a9gorie">catégorie</a>, mais de plus petite envergure. Une publication peut avoir plusieurs étiquettes, dont beaucoup ne s’y rapportent que de manière périphérique. Comme les catégories, les étiquettes sont généralement liées à une page qui montre tous les articles ayant la même étiquette. Les étiquettes peuvent être créés à la volée en les saisissant simplement dans le <a href="/support/article/writing-posts#description-des-champs-de-publication" data-type="URL" data-id="/support/article/writing-posts#description-des-champs-de-publication">champ <em>Étiquette</em></a>. Par défaut, les étiquettes peuvent être attribuées uniquement aux publications et aux <a href="/support/article/post-types/" data-type="URL" data-id="/support/article/post-types/">types de publication</a> personnalisée.</p>
3398<!-- /wp:paragraph -->
3399
3400<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3401<p class="has-vivid-green-cyan-background-color has-background">Tags can also be displayed in <a href="http://en.wikipedia.org/wiki/Tag_Cloud">clouds</a>
3402 which show large numbers of Tags in various sizes, colors, etc. This
3403allows for a sort of total perspective on the blog, allowing people to
3404see the sort of things your blog is about most.
3405</p>
3406<!-- /wp:paragraph -->
3407
3408<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3409<p class="has-luminous-vivid-amber-background-color has-background">Les étiquettes peuvent également être affichées dans des <a href="https://fr.wikipedia.org/wiki/Nuage_de_mots-cl%C3%A9s" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Nuage_de_mots-cl%C3%A9s">clouds</a> qui montrent un grand nombre d’étiquettes de différentes tailles, couleurs, etc. Cela permet une sorte de perspective totale sur le blog, permettant aux gens de voir le type de choses sur votre blog.</p>
3410<!-- /wp:paragraph -->
3411
3412<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3413<p class="has-vivid-green-cyan-background-color has-background">Many people confuse Tags and Categories, but the difference is
3414easy: Categories generally don't change often, while your Tags usually
3415change with every Post and are closer to the topic of the Post.
3416</p>
3417<!-- /wp:paragraph -->
3418
3419<!-- wp:paragraph -->
3420<p>Beaucoup de gens confondent les étiquettes et les catégories, mais la différence est simple&nbsp;: les catégories ne changent généralement pas souvent, tandis que vos étiquettes changent généralement à chaque publication et sont plus proches du sujet de la publication.</p>
3421<!-- /wp:paragraph -->
3422
3423<!-- wp:heading -->
3424<h2>Slogan</h2>
3425<!-- /wp:heading -->
3426
3427<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3428<p class="has-vivid-green-cyan-background-color has-background">A tagline is a catchy phrase that describes the character or the
3429attributes of the blog in a brief, concise manner. Think of it as the
3430slogan, or catchline for a weblog.
3431</p>
3432<!-- /wp:paragraph -->
3433
3434<!-- wp:paragraph -->
3435<p>Un slogan est une phrase accrocheuse qui décrit le personnage ou les attributs du blog de manière brève et concise. </p>
3436<!-- /wp:paragraph -->
3437
3438<!-- wp:heading -->
3439<h2>Documentation basée sur les tâches</h2>
3440<!-- /wp:heading -->
3441
3442<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3443<p class="has-vivid-green-cyan-background-color has-background">Task based, or task oriented documentation is writing that takes you
3444through a process/task step-by-step; it is succinct, lacks jargon, is
3445easily understood, and structured entirely around performing specific
3446tasks.
3447
3448In order to get to Z, you need to:
3449</p>
3450<!-- /wp:paragraph -->
3451
3452<!-- wp:paragraph -->
3453<p>La documentation basée sur les tâches ou orientée vers les tâches consiste à rédiger un processus/une tâche étape par étape&nbsp;; il est succinct, manque de jargon, est facile à comprendre et entièrement structuré autour de l’exécution de tâches spécifiques. Pour arriver à Z, vous devez&nbsp;: </p>
3454<!-- /wp:paragraph -->
3455
3456<!-- wp:list {"ordered":true,"backgroundColor":"vivid-green-cyan"} -->
3457<ol class="has-vivid-green-cyan-background-color has-background"><li>Step x</li><li>Step y</li><li>Step z</li></ol>
3458<!-- /wp:list -->
3459
3460<!-- wp:list {"ordered":true} -->
3461<ol><li>Étape x</li><li>Étape y</li><li>Étape z</li></ol>
3462<!-- /wp:list -->
3463
3464<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3465<p class="has-vivid-green-cyan-background-color has-background">Keep in mind that people who need to know how to perform a task usually need answers quick!
3466</p>
3467<!-- /wp:paragraph -->
3468
3469<!-- wp:paragraph -->
3470<p>Gardez à l’esprit que les personnes qui ont besoin de savoir comment effectuer une tâche ont généralement besoin de réponses rapides&nbsp;!</p>
3471<!-- /wp:paragraph -->
3472
3473<!-- wp:heading -->
3474<h2>Taxonomie</h2>
3475<!-- /wp:heading -->
3476
3477<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3478<p class="has-vivid-green-cyan-background-color has-background">A <strong>taxonomy</strong> allows for the classification of things.  In  WordPress, there are two built-in taxonomies, categories and tags.   These taxonomies help further classify posts and custom post types.   Also, custom taxonomies can be defined. </p>
3479<!-- /wp:paragraph -->
3480
3481<!-- wp:paragraph -->
3482<p>Une <strong>taxonomie</strong> permet la classification des choses. Dans WordPress, il existe deux taxonomies, catégories et étiquettes intégrées. Ces taxonomies aident à mieux classer les publications et les types de publication personnalisés. En outre, des taxonomies personnalisées peuvent être définies.</p>
3483<!-- /wp:paragraph -->
3484
3485<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3486<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Category">Category</a>, <a href="https://codex.wordpress.org/Glossary#Tag">Tag</a></li><li> External links: <a href="http://en.wikipedia.org/wiki/Taxonomy">Taxonomy at Wikipedia</a>, <a href="https://codex.wordpress.org/Function_Reference/register_taxonomy">register_taxonomy()</a></li></ul>
3487<!-- /wp:list -->
3488
3489<!-- wp:list -->
3490<ul><li>Voir aussi&nbsp;: <a href="#cat%c3%a9gorie" data-type="internal" data-id="#cat%c3%a9gorie">Catégories</a>, <a href="#%c3%a9tiquettes" data-type="internal" data-id="#%c3%a9tiquettes">Étiquettes</a></li><li>Liens externes&nbsp;: <a href="https://fr.wikipedia.org/wiki/Taxonomie" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Taxonomie">Taxonomie sur Wikipedia</a>, <a href="https://developer.wordpress.org/reference/functions/register_taxonomy/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/register_taxonomy/">register_taxonomy()</a></li></ul>
3491<!-- /wp:list -->
3492
3493<!-- wp:heading -->
3494<h2>Telnet</h2>
3495<!-- /wp:heading -->
3496
3497<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3498<p class="has-vivid-green-cyan-background-color has-background">Telnet is a <a href="http://en.wikipedia.org/wiki/Internet_protocol_suite">communications protocol</a> used to establish a connection to another computer.  <em>Telnet</em> runs on top of <a href="http://en.wikipedia.org/wiki/Transmission_Control_Protocol">TCP</a>/<a href="http://en.wikipedia.org/wiki/Internet_Protocol">IP</a>
3499 and is typically used in conjuction with terminal emulation software to
3500 login to remote computers. Telnet is inherently insecure and has
3501largely been replaced by <a href="https://codex.wordpress.org/Glossary#SSH">SSH</a>
3502</p>
3503<!-- /wp:paragraph -->
3504
3505<!-- wp:paragraph -->
3506<p>Telnet est un <a href="https://fr.wikipedia.org/wiki/Protocole_de_communication" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Protocole_de_communication">protocole de communication</a> utilisé pour établir une connexion avec un autre ordinateur. Telnet fonctionne sur <a href="https://fr.wikipedia.org/wiki/Transmission_Control_Protocol" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Transmission_Control_Protocol">TCP</a>/<a href="https://fr.wikipedia.org/wiki/Internet_Protocol" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Internet_Protocol">IP</a> et est généralement utilisé en conjonction avec un logiciel d’émulation de terminal pour se connecter à des ordinateurs distants. Telnet est intrinsèquement non sécurisé et a été largement remplacé par <a href="#ssh" data-type="internal" data-id="#ssh">SSH</a></p>
3507<!-- /wp:paragraph -->
3508
3509<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3510<ul class="has-vivid-green-cyan-background-color has-background"><li> External links: <a href="http://en.wikipedia.org/wiki/Telnet">Telnet at Wikipedia</a></li></ul>
3511<!-- /wp:list -->
3512
3513<!-- wp:list -->
3514<ul><li>Lien externe&nbsp;: <a href="https://fr.wikipedia.org/wiki/Telnet" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Telnet">Telnet sur Wikipedia</a></li></ul>
3515<!-- /wp:list -->
3516
3517<!-- wp:heading -->
3518<h2>Modèle</h2>
3519<!-- /wp:heading -->
3520
3521<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3522<p class="has-vivid-green-cyan-background-color has-background">In WordPress a <strong>template</strong> is a file that defines an area of the web pages generated by a <a href="https://codex.wordpress.org/Glossary#Theme">theme</a>. For example, there is typically a template for the header area at the top of the web pages, a template for the <a href="https://codex.wordpress.org/Glossary#Content">content</a>, a template for the <a href="https://codex.wordpress.org/Glossary#Sidebar">sidebars</a>, and so on. The templates are like building blocks that make up the complete web page.
3523</p>
3524<!-- /wp:paragraph -->
3525
3526<!-- wp:paragraph -->
3527<p>Dans WordPress, un <strong>modèle</strong> est un fichier qui définit une zone des pages Web générées par un <a href="#th%c3%a8me" data-type="internal" data-id="#th%c3%a8me">thème</a>. Par exemple, il existe généralement un modèle pour la zone d’en-tête en haut des pages Web, un modèle pour le <a href="#contenu" data-type="internal" data-id="#contenu">contenu</a>, un modèle pour les <a href="#colonne-lat%c3%a9rale" data-type="internal" data-id="#colonne-lat%c3%a9rale">colonnes latérales</a>, etc. Les modèles sont comme des blocs de construction qui composent la page Web complète.</p>
3528<!-- /wp:paragraph -->
3529
3530<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3531<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Templates">Templates</a>, <a href="https://codex.wordpress.org/Stepping_Into_Templates">Stepping Into Templates</a>, <a href="https://codex.wordpress.org/Template_Hierarchy">Template Hierarchy</a></li></ul>
3532<!-- /wp:list -->
3533
3534<!-- wp:list -->
3535<ul><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Templates">Templates</a>, <a href="https://codex.wordpress.org/Stepping_Into_Templates">Stepping Into Templates</a>, <a href="https://codex.wordpress.org/Template_Hierarchy">Template Hierarchy</a> (en anglais)</li></ul>
3536<!-- /wp:list -->
3537
3538<!-- wp:heading -->
3539<h2>Marqueur de modèle</h2>
3540<!-- /wp:heading -->
3541
3542<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3543<p class="has-vivid-green-cyan-background-color has-background">In a WordPress Theme, <a href="https://codex.wordpress.org/Template_Tags">template tags</a>
3544 are used in template files to generate specific programming
3545instructions. They are used to display generated content and information
3546 on a WordPress site. Template tags are short programming words, also
3547known as functions, that tap into the WordPress core for instructions.
3548For example, the HTML title tag of a WordPress site may hold the <a href="https://codex.wordpress.org/Function_Reference/bloginfo">bloginfo()</a>
3549 template tag that requests the site title, site tagline, and other site
3550 information set by the template tag parameters. Using this in the title HTML tag allows the Theme to be used on multiple sites and the information displayed will change easily with each site.
3551</p>
3552<!-- /wp:paragraph -->
3553
3554<!-- wp:paragraph -->
3555<p>Dans un thème WordPress, les <a href="https://codex.wordpress.org/fr:Marqueurs_de_Modele" data-type="URL" data-id="https://codex.wordpress.org/fr:Marqueurs_de_Modele">marqueurs de modèle</a> sont utilisées dans les fichiers de modèle pour générer des instructions de programmation spécifiques. Ils sont utilisés pour afficher le contenu et les informations générés sur un site WordPress. Les marqueurs de modèle sont de courts mots de programmation, également appelés fonctions, qui puisent dans le noyau WordPress pour obtenir des instructions. Par exemple, l’étiquette de titre HTML d’un site WordPress peut contenir le marqueur de modèle <a href="https://developer.wordpress.org/reference/functions/bloginfo/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/bloginfo/">bloginfo()</a> qui demande le titre du site, le slogan du site et d’autres informations sur le site définies par les réglages du marqueur de modèle. L’utilisation de ceci dans la balise HTML du titre permet au thème d’être utilisé sur plusieurs sites et les informations affichées changeront facilement avec chaque site.</p>
3556<!-- /wp:paragraph -->
3557
3558<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3559<p class="has-vivid-green-cyan-background-color has-background">Other template tags are more sophisticated, generating post content, queries, and site data.
3560</p>
3561<!-- /wp:paragraph -->
3562
3563<!-- wp:paragraph -->
3564<p>D’autres marqueurs de modèle sont plus sophistiqués et génèrent du contenu de publication, des requêtes et des données de site.</p>
3565<!-- /wp:paragraph -->
3566
3567<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3568<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Stepping_Into_Template_Tags">Stepping Into Template Tags</a>, <a href="https://codex.wordpress.org/Anatomy_of_a_Template_Tag">Anatomy of a Template Tag</a>, <a href="https://codex.wordpress.org/How_to_Pass_Tag_Parameters">How to Pass Tag Parameters</a>, <a href="https://codex.wordpress.org/Include_Tags">Include Tags</a>, <a href="https://codex.wordpress.org/Conditional_Tags">Conditional Tags</a>, <a href="https://codex.wordpress.org/Function_Reference">Function Reference</a>, <a href="https://codex.wordpress.org/Templates">Templates</a></li></ul>
3569<!-- /wp:list -->
3570
3571<!-- wp:list -->
3572<ul><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Stepping_Into_Template_Tags">Stepping Into Template Tags</a>, <a href="https://codex.wordpress.org/Anatomy_of_a_Template_Tag">Anatomy of a Template Tag</a>, <a href="https://codex.wordpress.org/How_to_Pass_Tag_Parameters">How to Pass Tag Parameters</a>, <a href="https://codex.wordpress.org/Include_Tags">Include Tags</a>, <a href="https://codex.wordpress.org/Conditional_Tags">Conditional Tags</a>, <a href="https://codex.wordpress.org/Function_Reference">Function Reference</a>, <a href="https://codex.wordpress.org/Templates">Templates</a> (en anglais), <a href="https://codex.wordpress.org/fr:Marqueurs_de_Modele" data-type="URL" data-id="https://codex.wordpress.org/fr:Marqueurs_de_Modele">Marqueur de modèle</a>, <a href="https://codex.wordpress.org/fr:Marqueurs_conditionnels" data-type="URL" data-id="https://codex.wordpress.org/fr:Marqueurs_conditionnels">Marqueurs conditionnels</a>, <a href="https://codex.wordpress.org/fr:Fonctions_de_r%C3%A9f%C3%A9rence" data-type="URL" data-id="https://codex.wordpress.org/fr:Fonctions_de_r%C3%A9f%C3%A9rence">Fonctions de référence</a></li></ul>
3573<!-- /wp:list -->
3574
3575<!-- wp:heading -->
3576<h2>Terme</h2>
3577<!-- /wp:heading -->
3578
3579<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3580<p class="has-vivid-green-cyan-background-color has-background">In WordPress, a <strong>term</strong> is a classification, group or subset of a <a href="https://codex.wordpress.org/Glossary#Taxonomy">Taxonomy</a>, where the latter can be a <a href="https://codex.wordpress.org/Glossary#Category">Category</a>, <a href="https://codex.wordpress.org/Glossary#Tag">Tag</a>
3581 or Custom Taxonomy. By default, terms have a title, a slug and a
3582description. Hierarchical taxonomies like categories can define a parent
3583 term.
3584</p>
3585<!-- /wp:paragraph -->
3586
3587<!-- wp:paragraph -->
3588<p>Dans WordPress, un <strong>terme</strong> est une classification, un groupe ou un sous-ensemble d’une <a href="#taxonomie" data-type="internal" data-id="#taxonomie">taxonomie</a>, où cette dernière peut être une <a href="#cat%c3%a9gorie" data-type="internal" data-id="#cat%c3%a9gorie">catégorie</a>, une <a href="#%c3%a9tiquettes" data-type="internal" data-id="#%c3%a9tiquettes">étiquette</a> ou une taxonomie personnalisée. Par défaut, les termes ont un titre, un slug et une description. Les taxonomies hiérarchiques telles que les catégories peuvent définir un terme parent.</p>
3589<!-- /wp:paragraph -->
3590
3591<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3592<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Taxonomies">Taxonomies</a>, <a href="https://codex.wordpress.org/Function_Reference/the_terms">the_terms()</a></li></ul>
3593<!-- /wp:list -->
3594
3595<!-- wp:list -->
3596<ul><li>Articles en relation&nbsp;: <a href="https://developer.wordpress.org/reference/functions/the_terms/" data-type="URL" data-id="https://developer.wordpress.org/reference/functions/the_terms/">the_terms()</a> (en anglais), <a href="https://fr.wordpress.org/support/article/taxonomies/">Taxonomies</a></li></ul>
3597<!-- /wp:list -->
3598
3599<!-- wp:heading -->
3600<h2>Éditeur de texte</h2>
3601<!-- /wp:heading -->
3602
3603<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3604<p class="has-vivid-green-cyan-background-color has-background">A <strong>text editor</strong> is a program which edits files in <em>plain text</em> format, as compared to <em>binary</em> format.  Using a non-text based word processing program (e.g. using Microsoft Word to edit <a href="https://codex.wordpress.org/Glossary#PHP">PHP</a>
3605 scripts) can cause major problems in your code. This is because
3606non-text based word processing programs insert extra formatting into
3607text files, and can corrupt the files when they need to be interpreted
3608by the interpreter. An editor like Notepad does not insert any extra
3609formatting.
3610</p>
3611<!-- /wp:paragraph -->
3612
3613<!-- wp:paragraph -->
3614<p>Un <strong>éditeur de texte</strong> est un programme qui édite des fichiers au format texte brut, par rapport au format binaire. L’utilisation d’un programme de traitement de texte non basé sur du texte (par exemple, l’utilisation de Microsoft Word pour éditer des scripts <a href="#php" data-type="internal" data-id="#php">PHP</a>) peut entraîner des problèmes majeurs dans votre code. Cela est dû au fait que les programmes de traitement de texte non basés sur du texte insèrent une mise en forme supplémentaire dans les fichiers texte et peuvent corrompre les fichiers lorsqu’ils doivent être interprétés par l’interpréteur. Un éditeur comme Notepad n’insère aucune mise en forme supplémentaire.</p>
3615<!-- /wp:paragraph -->
3616
3617<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3618<p class="has-vivid-green-cyan-background-color has-background"><strong>Edit WordPress Files with a text only editor.</strong>
3619</p>
3620<!-- /wp:paragraph -->
3621
3622<!-- wp:paragraph -->
3623<p><strong>Modifiez les fichiers WordPress avec un éditeur de texte uniquement.</strong></p>
3624<!-- /wp:paragraph -->
3625
3626<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3627<p class="has-vivid-green-cyan-background-color has-background">Some examples of file formats which need to be edited as plain text:
3628</p>
3629<!-- /wp:paragraph -->
3630
3631<!-- wp:paragraph -->
3632<p>Quelques exemples de formats de fichiers qui doivent être modifiés en texte brut&nbsp;:</p>
3633<!-- /wp:paragraph -->
3634
3635<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3636<ul class="has-vivid-green-cyan-background-color has-background"><li> <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a> documents</li><li> <a href="https://codex.wordpress.org/Glossary#PHP">PHP</a> scripts</li><li> <a href="https://codex.wordpress.org/Glossary#Perl">Perl</a> scripts</li><li> Rich Text Format documents</li><li> <a href="https://codex.wordpress.org/Glossary#JavaScript">JavaScript</a> scripts</li></ul>
3637<!-- /wp:list -->
3638
3639<!-- wp:list -->
3640<ul><li><a href="#html" data-type="internal" data-id="#html">HTML</a> documents</li><li><a href="#php" data-type="internal" data-id="#php">PHP</a> scripts</li><li><a href="#perl" data-type="internal" data-id="#perl">Perl</a> scripts</li><li>Rich Text Format documents</li><li><a href="#javascript" data-type="internal" data-id="#javascript">JavaScript</a> scripts</li></ul>
3641<!-- /wp:list -->
3642
3643<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3644<p class="has-vivid-green-cyan-background-color has-background">Some examples of text editor programs:
3645</p>
3646<!-- /wp:paragraph -->
3647
3648<!-- wp:paragraph -->
3649<p>Quelques exemples de programmes d’édition de texte&nbsp;:</p>
3650<!-- /wp:paragraph -->
3651
3652<!-- wp:list -->
3653<ul><li> <a href="https://atom.io/">Atom</a> (Cross-platform, Open Source, Free)</li><li> <a href="http://www.barebones.com/products/bbedit/index.html">BBEdit</a> (Classic Mac OS, Mac OS X)</li><li> <a href="http://www.boxersoftware.com/">Boxer Text Editor</a> (Windows)</li><li> <a href="http://brackets.io/">Brackets</a>(Cross-platform, Open Source, Free)</li><li> <a href="http://www.panic.com/coda/">Coda</a> (Mac OS X)</li><li> <a href="http://www.editpadpro.com/">EditPad Pro</a> (Windows)</li><li> <a href="http://www.editplus.com/">EditPlus</a> (Windows)</li><li> <a href="http://www.gnu.org/software/emacs/emacs.html">Emacs</a> (Cross-platform, Open Source, Free)</li><li> <a href="https://wiki.gnome.org/Apps/Gedit">gedit</a> (Cross-platform, Open Source, Free)</li><li> <a href="http://jedit.org/">jEdit</a> (Cross-platform, Open Source, Free)</li><li> <a href="https://kate-editor.org/">Kate</a> (Cross-platform, Open Source, Free)</li><li> <a href="http://komodoide.com/komodo-edit/">Komodo Edit</a> (Cross-platform, Open Source, Free)</li><li> <a href="https://notepad-plus-plus.org/">Notepad++</a> (Windows, Open Source, Free)</li><li> <a href="http://www.mpsoftware.dk/phpdesigner.php">phpDesigner</a> (Windows)</li><li> <a href="http://www.pspad.com/">PSPad</a> (Windows, Free)</li><li> <a href="https://www.peterborgapps.com/smultron/">Smultron</a> (Mac OS X)</li><li> <a href="https://www.codingmonkeys.de/subethaedit/">SubEthaEdit</a> (Mac OS X)</li><li> <a href="http://www.sublimetext.com/">Sublime Text</a> (Cross-platform)</li><li> TextEdit (comes with <a href="http://www.apple.com/jp/macos">Mac OS X</a>)</li><li> <a href="http://macromates.com/">TextMate</a> (Mac OS X)</li><li> <a href="http://www.textpad.com/">TextPad</a> (Windows)</li><li> <a href="http://www.ultraedit.com/">UltraEdit</a> (Windows)</li><li> <a href="http://www.vim.org/">vim</a> (Cross-platform, Open Source, Free)</li><li><a href="https://code.visualstudio.com/">Visual Studio Code</a> (Cross-platform, Free) </li></ul>
3654<!-- /wp:list -->
3655
3656<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3657<p class="has-vivid-green-cyan-background-color has-background">Some examples of non-plain text formats that require special software for editing:
3658</p>
3659<!-- /wp:paragraph -->
3660
3661<!-- wp:paragraph -->
3662<p>Quelques exemples de formats de texte non brut qui nécessitent un logiciel spécial pour l'édition :</p>
3663<!-- /wp:paragraph -->
3664
3665<!-- wp:list -->
3666<ul><li>Microsoft Word documents</li><li>Microsoft Excel spreadsheets</li><li>Images, such as JPEG, PNG, or GIF</li></ul>
3667<!-- /wp:list -->
3668
3669<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3670<p class="has-vivid-green-cyan-background-color has-background">Some examples of software which can edit text, but which are <strong>NOT</strong> regarded as basic text editors and <strong>NOT recommended</strong> for use on WordPress files:
3671</p>
3672<!-- /wp:paragraph -->
3673
3674<!-- wp:paragraph -->
3675<p>Quelques exemples de logiciels qui peuvent éditer du texte, mais qui ne sont <strong>PAS</strong> considérés comme des éditeurs de texte de base et <strong>NON recommandés</strong> pour une utilisation sur des fichiers WordPress&nbsp;:</p>
3676<!-- /wp:paragraph -->
3677
3678<!-- wp:list -->
3679<ul><li> Microsoft Word</li><li> Microsoft Excel</li><li> Adobe Photoshop</li><li> Adobe Illustrator</li><li> Adobe Dreamweaver</li></ul>
3680<!-- /wp:list -->
3681
3682<!-- wp:heading -->
3683<h2>Thème</h2>
3684<!-- /wp:heading -->
3685
3686<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3687<p class="has-vivid-green-cyan-background-color has-background">A Theme is a collection of files that work together to produce a
3688graphical front-end interface with an underlying unifying design for a
3689site. A WordPress Theme modifies the way the site is displayed and
3690designed, without modifying the underlying core programming of
3691WordPress. While some associate a WordPress Theme with "skinning" your
3692site with a design, a WordPress Theme contains programming code that
3693influences the design, changing it with each generated page view based
3694upon the programming with PHP, WordPress template tags, WordPress
3695conditional tags, and CSS.
3696</p>
3697<!-- /wp:paragraph -->
3698
3699<!-- wp:paragraph -->
3700<p>Un thème est une collection de fichiers qui fonctionnent ensemble pour produire une interface graphique frontale avec une conception unificatrice sous-jacente pour un site. Un thème WordPress modifie la façon dont le site est affiché et conçu, sans modifier la programmation de base sous-jacente de WordPress. Alors que certains associent un thème WordPress au «&nbsp;skinning&nbsp;» de votre site avec une conception, un thème WordPress contient du code de programmation qui influence la conception, en le modifiant à chaque vue de page générée en fonction de la programmation avec PHP, des balises de modèle WordPress, des balises conditionnelles WordPress, et CSS.</p>
3701<!-- /wp:paragraph -->
3702
3703<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3704<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Theme_Development">Theme Development</a>, <a href="https://codex.wordpress.org/Using_Themes">Using Themes</a></li></ul>
3705<!-- /wp:list -->
3706
3707<!-- wp:list -->
3708<ul><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Theme_Development">Theme Development</a> (en anglais), <a href="/support/article/using-themes/" data-type="URL" data-id="/support/article/using-themes/">Utilisation des thèmes</a></li></ul>
3709<!-- /wp:list -->
3710
3711<!-- wp:paragraph -->
3712<p>&lt;script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"&gt;&lt;/script&gt;
3713&lt;script&gt;
3714</p>
3715<!-- /wp:paragraph -->
3716
3717<!-- wp:preformatted -->
3718<pre class="wp-block-preformatted">    (adsbygoogle = window.adsbygoogle || []).push({
3719         google_ad_client: "ca-pub-2954655913085659",
3720         enable_page_level_ads: true
3721    });
3722</pre>
3723<!-- /wp:preformatted -->
3724
3725<!-- wp:paragraph -->
3726<p>&lt;/script&gt;
3727</p>
3728<!-- /wp:paragraph -->
3729
3730<!-- wp:paragraph -->
3731<p>&lt;script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"&gt;&lt;/script&gt;
3732&lt;script&gt;
3733</p>
3734<!-- /wp:paragraph -->
3735
3736<!-- wp:preformatted -->
3737<pre class="wp-block-preformatted"> (adsbygoogle = window.adsbygoogle || []).push({
3738   google_ad_client: "ca-pub-2954655913085659",
3739   enable_page_level_ads: true
3740 });
3741</pre>
3742<!-- /wp:preformatted -->
3743
3744<!-- wp:paragraph -->
3745<p>&lt;/script&gt;
3746</p>
3747<!-- /wp:paragraph -->
3748
3749<!-- wp:heading -->
3750<h2>Barre d’outils</h2>
3751<!-- /wp:heading -->
3752
3753<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3754<p class="has-vivid-green-cyan-background-color has-background">The <strong>Toolbar</strong> is an area of the screen just above that site that
3755 lists useful admininstration screen links such as add a new post or
3756edit your profile.  The Toolbar was added in <a href="https://codex.wordpress.org/Version_3.1">Version 3.1</a> as <a href="https://codex.wordpress.org/Glossary#Admin_Bar">Admin Bar</a> and in <a href="https://codex.wordpress.org/Version_3.3">Version 3.3</a> it was replaced by the <a href="https://codex.wordpress.org/Glossary#Toolbar">Toolbar</a>.  The toolbar can be turned on/off from the <a href="https://codex.wordpress.org/Users_Your_Profile_SubPanel">User Profile Screen</a>.
3757</p>
3758<!-- /wp:paragraph -->
3759
3760<!-- wp:paragraph -->
3761<p>La <strong>barre d’outils</strong> est une zone de l’écran juste au-dessus de ce site qui répertorie des liens d’écran d’administration utiles tels que l’ajout d’un nouveau message ou la modification de votre profil. La barre d’outils a été ajoutée dans la <a href="https://codex.wordpress.org/Version_3.1">version 3.1</a> en tant que <a href="#barre-d%e2%80%99administration" data-type="internal" data-id="#barre-d%e2%80%99administration">barre d’administration</a> et dans la <a href="https://codex.wordpress.org/Version_3.3">version 3.3</a>, elle a été remplacée par la barre d'outils. La <a href="#barre-d%e2%80%99outils" data-type="internal" data-id="#barre-d%e2%80%99outils">barre d’outils</a> peut être activée/désactivée à partir de l’<a href="/support/article/users-your-profile-screen/" data-type="URL" data-id="/support/article/users-your-profile-screen/">écran de profil utilisateur</a>.</p>
3762<!-- /wp:paragraph -->
3763
3764<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3765<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Toolbar">Toolbar</a></li><li> See also: <a href="https://codex.wordpress.org/Glossary#Admin_Bar">Admin Bar</a>, <a href="https://codex.wordpress.org/Users_Your_Profile_SubPanel">Your Profile Screen</a></li></ul>
3766<!-- /wp:list -->
3767
3768<!-- wp:list -->
3769<ul><li>Article en relation&nbsp;<a href="/support/article/toolbar/" data-type="URL" data-id="/support/article/toolbar/">La barre d’outils</a></li><li>Voir aussi&nbsp;: <a href="#barre-d%e2%80%99administration" data-type="internal" data-id="#barre-d%e2%80%99administration">Barre d’administration</a>, <a href="https://fr.wordpress.org/support/article/users-your-profile-screen/">Écran de profil utilisateur</a></li></ul>
3770<!-- /wp:list -->
3771
3772<!-- wp:heading -->
3773<h2>Rétrolien</h2>
3774<!-- /wp:heading -->
3775
3776<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3777<p class="has-vivid-green-cyan-background-color has-background">Trackback helps you to notify another author that you wrote something
3778 related to what he had written on his blog, even if you don't have an
3779explicit link to his article. This improves the chances of the other
3780author sitting up and noticing that you gave him credit for something,
3781or that you improved upon something he wrote, or something similar. With
3782 pingback and trackback, blogs are interconnected. Think of them as the
3783equivalents of acknowledgements and references at the end of an academic
3784 paper, or a chapter in a textbook.
3785</p>
3786<!-- /wp:paragraph -->
3787
3788<!-- wp:paragraph -->
3789<p>Un rétrolien vous aide à informer un autre auteur que vous avez écrit quelque chose en rapport avec ce qu’il avait écrit sur son blog, même si vous n’avez pas de lien explicite vers son article. Cela améliore les chances de l’autre auteur de s’asseoir et de remarquer que vous lui avez attribué quelque chose, ou que vous avez amélioré quelque chose qu’il a écrit, ou quelque chose de similaire. Avec le pingback et le rétrolien, les blogs sont interconnectés. Considérez-les comme des équivalents de remerciements et de références à la fin d’un article académique ou d’un chapitre dans un manuel.</p>
3790<!-- /wp:paragraph -->
3791
3792<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3793<ul class="has-vivid-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Pingback">Pingback</a></li><li> Related articles: <a href="https://codex.wordpress.org/Introduction_to_Blogging#Trackbacks">Introduction to Blogging: Trackbacks</a></li></ul>
3794<!-- /wp:list -->
3795
3796<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
3797<ul class="has-luminous-vivid-amber-background-color has-background"><li>Voir aussi&nbsp;: <a href="#pingback" data-type="internal" data-id="#pingback">Pingback</a></li><li>Article en relation&nbsp;: <a href="https://fr.wordpress.org/support/article/introduction-to-blogging/#r%c3%a9troliens" data-type="URL" data-id="https://fr.wordpress.org/support/article/introduction-to-blogging/#r%c3%a9troliens">Introduction au Blogging&nbsp;: Rétroliens</a></li></ul>
3798<!-- /wp:list -->
3799
3800<!-- wp:heading -->
3801<h2>Transient</h2>
3802<!-- /wp:heading -->
3803
3804<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3805<p class="has-vivid-green-cyan-background-color has-background">A <strong>Transient</strong> is temporal data identified by a custom name, stored in the <a href="https://codex.wordpress.org/Glossary#Web_server">web server</a> database or memory for fast access. This temporal nature and use of fast memory caching is their primary distinction from <a href="https://codex.wordpress.org/Glossary#Options">Options</a>.
3806</p>
3807<!-- /wp:paragraph -->
3808
3809<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3810<p class="has-luminous-vivid-amber-background-color has-background">Un transitoire est une donnée temporelle identifiée par un nom personnalisé, stockée dans la base de données ou la mémoire du <a href="#serveur-web" data-type="internal" data-id="#serveur-web">serveur web</a> pour un accès rapide. Cette nature temporelle et l'utilisation de la mise en cache rapide de la mémoire constituent leur principale distinction par rapport aux <a href="#options" data-type="internal" data-id="#options">options</a>.</p>
3811<!-- /wp:paragraph -->
3812
3813<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
3814<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Transients_API">Transients API</a>, <a href="https://codex.wordpress.org/Options_API">Options API</a></li></ul>
3815<!-- /wp:list -->
3816
3817<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
3818<ul class="has-luminous-vivid-amber-background-color has-background"><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Options_API">Options API</a> (en anglais), <a href="https://developer.wordpress.org/apis/handbook/transients/" data-type="URL" data-id="https://developer.wordpress.org/apis/handbook/transients/">Transients API</a></li></ul>
3819<!-- /wp:list -->
3820
3821<!-- wp:heading -->
3822<h2>Thème Twenty Ten</h2>
3823<!-- /wp:heading -->
3824
3825<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3826<p class="has-vivid-green-cyan-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_3.0">Version 3.0</a>, the <a href="https://codex.wordpress.org/Glossary#Twenty_Ten_theme">Twenty Ten theme</a> became the default (and fallback) theme. As described in <a href="http://wordpress.org/development/2009/12/2010-a-theme-odyssey/">2010: A Theme Odyssey</a>,
3827 the Twenty Ten theme serves as a good example theme that includes new
3828theme-based features, and looks nice on a public site.  Twenty Ten is a
3829community-developed theme.
3830</p>
3831<!-- /wp:paragraph -->
3832
3833<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3834<p class="has-luminous-vivid-amber-background-color has-background">À partir de la <a href="https://codex.wordpress.org/Version_3.0">version 3.0</a>, le thème Twenty Ten est devenu le thème par défaut (et de secours). Comme décrit dans <a href="https://wordpress.org/news/2009/12/2010-a-theme-odyssey/" data-type="URL" data-id="https://wordpress.org/news/2009/12/2010-a-theme-odyssey/">2010: A Theme Odyssey</a>, le thème Twenty Ten est un bon exemple de thème qui inclut de nouvelles fonctionnalités basées sur des thèmes et qui a l'air bien sur un site public. Twenty Ten est un thème développé par la communauté.</p>
3835<!-- /wp:paragraph -->
3836
3837<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3838<p class="has-vivid-green-cyan-background-color has-background">Up to <a href="https://codex.wordpress.org/Version_2.9.2">Version 2.9.2</a>, the default theme was the Kubrick theme and was housed in the <em>wp-content/themes/default</em> folder.  The Twenty Ten theme is housed in the <em>wp-content/themes/twentyten</em> folder and was the only theme in the WordPress distribution.
3839</p>
3840<!-- /wp:paragraph -->
3841
3842<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3843<p class="has-luminous-vivid-amber-background-color has-background">Jusqu’à la version 2.9.2, le thème par défaut était le thème Kubrick et était hébergé dans le dossier <em>wp-content/themes/default</em>.  Le thème Twenty Ten est hébergé dans le dossier <em>wp-content/themes/twentyten</em> et était le seul thème de la distribution WordPress.</p>
3844<!-- /wp:paragraph -->
3845
3846<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
3847<ul class="has-luminous-vivid-amber-background-color has-background"><li>Voir aussi&nbsp;: <a href="#th%c3%a8me-par-d%c3%a9faut" data-type="internal" data-id="#th%c3%a8me-par-d%c3%a9faut">Thème par défaut</a></li><li>Articles en relation&nbsp;: <a href="https://codex.wordpress.org/Child_Themes">Child Themes</a> (en anglais), <a href="https://codex.wordpress.org/fr:Th%C3%A8mes_Enfant" data-type="URL" data-id="https://codex.wordpress.org/fr:Th%C3%A8mes_Enfant">Thème enfant</a></li></ul>
3848<!-- /wp:list -->
3849
3850<!-- wp:heading -->
3851<h2>Thème Twenty Eleven</h2>
3852<!-- /wp:heading -->
3853
3854<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3855<p class="has-vivid-green-cyan-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_3.2">Version 3.2</a>, the <a href="https://codex.wordpress.org/Glossary#Twenty_Eleven_theme">Twenty Eleven theme</a> was the default (and fallback) theme.  Twenty Eleven is a community-developed theme that emphasizes <a href="https://codex.wordpress.org/Post_Formats">Post Formats</a>, random theme header images, customizable layouts and colors, HTML 5 improvements, and adherence to <a href="https://codex.wordpress.org/WordPress_Coding_Standards">WordPress coding standards</a>. It was replaced as the default in <a href="https://codex.wordpress.org/Version_3.5">Version 3.5</a> by the <a href="https://codex.wordpress.org/Glossary#Twenty_Twelve_theme">Twenty Twelve theme</a>.
3856</p>
3857<!-- /wp:paragraph -->
3858
3859<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3860<p class="has-luminous-vivid-amber-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_3.2">Version 3.2</a>, the <a href="https://codex.wordpress.org/Glossary#Twenty_Eleven_theme">Twenty Eleven theme</a> was the default (and fallback) theme.  Twenty Eleven is a community-developed theme that emphasizes <a href="https://codex.wordpress.org/Post_Formats">Post Formats</a>, random theme header images, customizable layouts and colors, HTML 5 improvements, and adherence to <a href="https://codex.wordpress.org/WordPress_Coding_Standards">WordPress coding standards</a>. It was replaced as the default in <a href="https://codex.wordpress.org/Version_3.5">Version 3.5</a> by the <a href="https://codex.wordpress.org/Glossary#Twenty_Twelve_theme">Twenty Twelve theme</a>.
3861</p>
3862<!-- /wp:paragraph -->
3863
3864<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
3865<ul class="has-light-green-cyan-background-color has-background"><li>See also: <a href="https://codex.wordpress.org/Glossary#Default_theme">Default theme</a></li><li>Related articles: <a href="https://codex.wordpress.org/Child_Themes">Child Themes</a></li></ul>
3866<!-- /wp:list -->
3867
3868<!-- wp:heading -->
3869<h2>Thème Twenty Twelve</h2>
3870<!-- /wp:heading -->
3871
3872<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3873<p class="has-vivid-green-cyan-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_3.5">Version 3.5</a>, the <a href="https://wordpress.org/themes/twentytwelve/">Twenty Twelve theme</a>
3874 became the default (and fallback) theme.  Twenty Twelve is a fully
3875responsive theme that looks great on any device. Features include a
3876front page template with its own <a href="https://codex.wordpress.org/WordPress_Widgets">Widgets</a>, an optional display font, styling for <a href="https://codex.wordpress.org/Post_Formats">Post Formats</a> on both index and single views, and an optional no-sidebar page template.
3877</p>
3878<!-- /wp:paragraph -->
3879
3880<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3881<p class="has-luminous-vivid-amber-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_3.5">Version 3.5</a>, the <a href="https://wordpress.org/themes/twentytwelve/">Twenty Twelve theme</a>
3882 became the default (and fallback) theme.  Twenty Twelve is a fully
3883responsive theme that looks great on any device. Features include a
3884front page template with its own <a href="https://codex.wordpress.org/WordPress_Widgets">Widgets</a>, an optional display font, styling for <a href="https://codex.wordpress.org/Post_Formats">Post Formats</a> on both index and single views, and an optional no-sidebar page template.
3885</p>
3886<!-- /wp:paragraph -->
3887
3888<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
3889<ul class="has-light-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Default_theme">Default theme</a></li><li> Related articles: <a href="https://codex.wordpress.org/Child_Themes">Child Themes</a></li></ul>
3890<!-- /wp:list -->
3891
3892<!-- wp:heading -->
3893<h2>Thème Twenty Thirteen</h2>
3894<!-- /wp:heading -->
3895
3896<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3897<p class="has-vivid-green-cyan-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_3.6">Version 3.6</a>, the <a href="https://wordpress.org/themes/twentythirteen/">Twenty Thirteen theme</a> became the default (and fallback) theme.
3898</p>
3899<!-- /wp:paragraph -->
3900
3901<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3902<p class="has-luminous-vivid-amber-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_3.6">Version 3.6</a>, the <a href="https://wordpress.org/themes/twentythirteen/">Twenty Thirteen theme</a> became the default (and fallback) theme.
3903</p>
3904<!-- /wp:paragraph -->
3905
3906<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
3907<ul class="has-light-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Default_theme">Default theme</a></li><li> Related articles: <a href="https://codex.wordpress.org/Child_Themes">Child Themes</a></li></ul>
3908<!-- /wp:list -->
3909
3910<!-- wp:heading -->
3911<h2>Thème Twenty Fourteen</h2>
3912<!-- /wp:heading -->
3913
3914<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3915<p class="has-vivid-green-cyan-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_3.8">Version 3.8</a>, the <a href="http://codex.wordpress.org/Twenty_Fourteen">Twenty Fourteen theme</a> became the default (and fallback) theme.
3916</p>
3917<!-- /wp:paragraph -->
3918
3919<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3920<p class="has-luminous-vivid-amber-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_3.8">Version 3.8</a>, the <a href="http://codex.wordpress.org/Twenty_Fourteen">Twenty Fourteen theme</a> became the default (and fallback) theme.
3921</p>
3922<!-- /wp:paragraph -->
3923
3924<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
3925<ul class="has-light-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Default_theme">Default theme</a></li><li> Related articles: <a href="https://codex.wordpress.org/Child_Themes">Child Themes</a></li></ul>
3926<!-- /wp:list -->
3927
3928<!-- wp:heading -->
3929<h2>Thème Twenty Fifteen</h2>
3930<!-- /wp:heading -->
3931
3932<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3933<p class="has-vivid-green-cyan-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_4.1">Version 4.1</a>, the <a href="https://codex.wordpress.org/Twenty_Fifteen">Twenty Fifteen theme</a> became the default (and fallback) theme.
3934</p>
3935<!-- /wp:paragraph -->
3936
3937<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3938<p class="has-luminous-vivid-amber-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_4.1">Version 4.1</a>, the <a href="https://codex.wordpress.org/Twenty_Fifteen">Twenty Fifteen theme</a> became the default (and fallback) theme.
3939</p>
3940<!-- /wp:paragraph -->
3941
3942<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3943<p class="has-vivid-green-cyan-background-color has-background">It is clean, blog-focused, and designed for clarity. Twenty
3944Fifteen's simple, straightforward typography is readable on a wide
3945variety of screen sizes, and suitable for multiple languages. It was
3946designed using a mobile-first approach, meaning content takes
3947center-stage, regardless of whether the site is accessed by smartphone,
3948tablet, laptop, or desktop computer.
3949</p>
3950<!-- /wp:paragraph -->
3951
3952<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3953<p class="has-luminous-vivid-amber-background-color has-background">It is clean, blog-focused, and designed for clarity. Twenty
3954Fifteen's simple, straightforward typography is readable on a wide
3955variety of screen sizes, and suitable for multiple languages. It was
3956designed using a mobile-first approach, meaning content takes
3957center-stage, regardless of whether the site is accessed by smartphone,
3958tablet, laptop, or desktop computer.
3959</p>
3960<!-- /wp:paragraph -->
3961
3962<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
3963<ul class="has-light-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Default_theme">Default theme</a></li><li> Related articles: <a href="https://codex.wordpress.org/Child_Themes">Child Themes</a></li></ul>
3964<!-- /wp:list -->
3965
3966<!-- wp:heading -->
3967<h2>Thème Twenty  Sixteen</h2>
3968<!-- /wp:heading -->
3969
3970<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3971<p class="has-vivid-green-cyan-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_4.4">Version 4.4</a>, the <a href="https://codex.wordpress.org/Twenty_Sixteen">Twenty Sixteen theme</a> became the default (and fallback) theme.
3972</p>
3973<!-- /wp:paragraph -->
3974
3975<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3976<p class="has-luminous-vivid-amber-background-color has-background">Starting with <a href="https://codex.wordpress.org/Version_4.4">Version 4.4</a>, the <a href="https://codex.wordpress.org/Twenty_Sixteen">Twenty Sixteen theme</a> became the default (and fallback) theme.
3977</p>
3978<!-- /wp:paragraph -->
3979
3980<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
3981<p class="has-vivid-green-cyan-background-color has-background">Twenty Sixteen is a modernized take on an ever-popular WordPress
3982layout — the horizontal masthead with an optional right sidebar that
3983works perfectly for blogs and websites. It has custom color options with
3984 beautiful default color schemes, a harmonious fluid grid using a
3985mobile-first approach, and impeccable polish in every detail. Twenty
3986Sixteen will make your WordPress look beautiful everywhere.
3987</p>
3988<!-- /wp:paragraph -->
3989
3990<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
3991<p class="has-luminous-vivid-amber-background-color has-background">Twenty Sixteen is a modernized take on an ever-popular WordPress
3992layout — the horizontal masthead with an optional right sidebar that
3993works perfectly for blogs and websites. It has custom color options with
3994 beautiful default color schemes, a harmonious fluid grid using a
3995mobile-first approach, and impeccable polish in every detail. Twenty
3996Sixteen will make your WordPress look beautiful everywhere.
3997</p>
3998<!-- /wp:paragraph -->
3999
4000<!-- wp:list {"backgroundColor":"light-green-cyan"} -->
4001<ul class="has-light-green-cyan-background-color has-background"><li> See also: <a href="https://codex.wordpress.org/Glossary#Default_theme">Default theme</a></li><li> Related articles: <a href="https://codex.wordpress.org/Child_Themes">Child Themes</a></li></ul>
4002<!-- /wp:list -->
4003
4004<!-- wp:heading -->
4005<h2>Unicode</h2>
4006<!-- /wp:heading -->
4007
4008<!-- wp:paragraph -->
4009<p>A widely supported and preferred character encoding system.
4010</p>
4011<!-- /wp:paragraph -->
4012
4013<!-- wp:paragraph -->
4014<p>For a computer to display letters (or any text characters), it
4015needs to enumerate them - create an index of characters it knows how to
4016display. These indexes are known as character sets. This is invaluable
4017for users hosting <a href="https://codex.wordpress.org/Localization">WordPress in a non-English language</a>.
4018</p>
4019<!-- /wp:paragraph -->
4020
4021<!-- wp:paragraph -->
4022<p>The most widely used collections of these character sets are the iso-8859 with <a href="http://en.wikipedia.org/wiki/ISO_8859-1">iso-8859-1</a> and <a href="http://en.wikipedia.org/wiki/ISO_8859-15">iso-8859-15</a>
4023 (which contains the euro sign and some characters used in Dutch,
4024French, Czech and Slovak) being the most common; they are also known as
4025Latin1 and Latin9. These character sets use 8 bits (a single byte) for
4026each character, allowing for 255 different characters (256, counting
4027null). However, when considering that Latin-based languages aren't the
4028only ones in the world (think Japanese or Hebrew), 255 characters aren't
4029 nearly enough.
4030</p>
4031<!-- /wp:paragraph -->
4032
4033<!-- wp:paragraph -->
4034<p>There is a wide index of characters known as <a href="http://en.wikipedia.org/wiki/Unicode">Unicode</a>.
4035 Unicode has so many characters that sometimes more than 16 bits (2
4036bytes!) are required to represent them. Furthermore, the first 127
4037characters of Unicode are the same as the first 127 of the most widely
4038used character set - iso-8859-1. For this purpose, UTF, the Unicode
4039Translation Format, was created. UTF uses different numbers of bits for
4040characters, and allows for the entire range of Unicode to be used. What
4041you should probably know is:
4042</p>
4043<!-- /wp:paragraph -->
4044
4045<!-- wp:list -->
4046<ul><li> UTF-8 is an 8-bit-minimum type of UTF. There are also UTF-16 and UTF-32.</li><li> If your document is in a Latin-based encoding, you probably don't need to change anything about it for it to be UTF.</li><li> A single UTF document can be in various languages with no need to switch encodings halfway through.</li><li> External links: <a href="http://www.joelonsoftware.com/articles/Unicode.html">Joel Spolsky on Unicode</a></li></ul>
4047<!-- /wp:list -->
4048
4049<!-- wp:heading -->
4050<h2>Unix</h2>
4051<!-- /wp:heading -->
4052
4053<!-- wp:paragraph -->
4054<p><strong>Unix</strong>, or <strong>UNIX</strong>, is a computer operating system developed
4055 at AT&amp;T's Bell Laboratories starting back in 1969. Initially
4056designed with the objective of creating an OS written in a high level
4057language rather than assembly, a majority of <a href="https://codex.wordpress.org/Glossary#Web_server">web servers</a> currently run on different "flavors" of this high-performance OS, or on <a href="https://codex.wordpress.org/Glossary#Linux">Linux</a>, developed as a Unix-like operating system.
4058</p>
4059<!-- /wp:paragraph -->
4060
4061<!-- wp:list -->
4062<ul><li> See also: <a href="https://codex.wordpress.org/UNIX_Shell_Skills">UNIX Shell Skills</a>, <a href="https://codex.wordpress.org/Glossary#Mac_OS_X">Mac OS X</a></li></ul>
4063<!-- /wp:list -->
4064
4065<!-- wp:heading -->
4066<h2>Heure Unix</h2>
4067<!-- /wp:heading -->
4068
4069<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
4070<p class="has-vivid-green-cyan-background-color has-background"><strong>Unix Time</strong>, or a <strong>timestamp</strong>, is a method of tracking time
4071 by determining the approximate number of seconds from a particular
4072event. That event is called an Epoch. Since this time format is only off
4073 by a few seconds each century, it is usually considered good enough for
4074 most applications.
4075</p>
4076<!-- /wp:paragraph -->
4077
4078<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
4079<p class="has-luminous-vivid-amber-background-color has-background"><strong>Unix Time</strong>, or a <strong>timestamp</strong>, is a method of tracking time
4080 by determining the approximate number of seconds from a particular
4081event. That event is called an Epoch. Since this time format is only off
4082 by a few seconds each century, it is usually considered good enough for
4083 most applications.
4084</p>
4085<!-- /wp:paragraph -->
4086
4087<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
4088<p class="has-vivid-green-cyan-background-color has-background">Unix time is (currently) a ten digit number, and looks like this: 1229362315.
4089 WordPress often uses a Unix timestamp internally to track time. The
4090human readable times and dates you see are converted from Unix Time or
4091from a MySQL/MariaDB DATETIME field.
4092</p>
4093<!-- /wp:paragraph -->
4094
4095<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
4096<p class="has-luminous-vivid-amber-background-color has-background">Unix time is (currently) a ten digit number, and looks like this: 1229362315.
4097 WordPress often uses a Unix timestamp internally to track time. The
4098human readable times and dates you see are converted from Unix Time or
4099from a MySQL/MariaDB DATETIME field.
4100</p>
4101<!-- /wp:paragraph -->
4102
4103<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
4104<ul class="has-vivid-green-cyan-background-color has-background"><li> External Links: <a href="http://en.wikipedia.org/wiki/Unix_time">Unix Time at Wikipedia</a>, <a href="http://dev.mysql.com/doc/refman/en/datetime.htmllMySQL">DATETIME</a>, <a href="https://mariadb.com/kb/en/mariadb/datetime/">MariaDB DATETIME</a></li></ul>
4105<!-- /wp:list -->
4106
4107<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
4108<ul class="has-luminous-vivid-amber-background-color has-background"><li>External Links: <a href="http://en.wikipedia.org/wiki/Unix_time">Unix Time at Wikipedia</a>, <a href="http://dev.mysql.com/doc/refman/en/datetime.htmllMySQL">DATETIME</a>, <a href="https://mariadb.com/kb/en/mariadb/datetime/">MariaDB DATETIME</a></li><li><a href="https://fr.wikipedia.org/wiki/Heure_Unix" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Heure_Unix">Heure Unix sur fr.wikipedia.org</a></li></ul>
4109<!-- /wp:list -->
4110
4111<!-- wp:heading -->
4112<h2>URL</h2>
4113<!-- /wp:heading -->
4114
4115<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
4116<p class="has-vivid-green-cyan-background-color has-background">An address of a specific Web site or file on the Internet.
4117</p>
4118<!-- /wp:paragraph -->
4119
4120<!-- wp:paragraph -->
4121<p>L’adresse d’un site Web ou d’un fichier spécifique sur Internet.</p>
4122<!-- /wp:paragraph -->
4123
4124<!-- wp:preformatted -->
4125<pre class="wp-block-preformatted"> http://www.example.com/
4126 http://www.example.com/reports/index.html
4127</pre>
4128<!-- /wp:preformatted -->
4129
4130<!-- wp:heading -->
4131<h2>UTC</h2>
4132<!-- /wp:heading -->
4133
4134<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
4135<p class="has-vivid-green-cyan-background-color has-background"><strong>UTC</strong> ("Universal Time, Coordinated") is the basis of
4136international time standards from which time zones around the world are
4137calculated. For most purposes it is the same as the older <a href="https://codex.wordpress.org/Glossary#GMT">GMT</a> standard.
4138</p>
4139<!-- /wp:paragraph -->
4140
4141<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
4142<p class="has-luminous-vivid-amber-background-color has-background"><strong>UTC</strong> ("Universal Time, Coordinated") is the basis of
4143international time standards from which time zones around the world are
4144calculated. For most purposes it is the same as the older <a href="https://codex.wordpress.org/Glossary#GMT">GMT</a> standard.
4145</p>
4146<!-- /wp:paragraph -->
4147
4148<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
4149<ul class="has-vivid-green-cyan-background-color has-background"><li> External link: <a href="http://en.wikipedia.org/wiki/Coordinated_Universal_Time">UTC</a> (Wikipedia)</li></ul>
4150<!-- /wp:list -->
4151
4152<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
4153<ul class="has-luminous-vivid-amber-background-color has-background"><li>External link: <a href="https://fr.wikipedia.org/wiki/Temps_universel_coordonn%C3%A9" data-type="URL" data-id="https://fr.wikipedia.org/wiki/Temps_universel_coordonn%C3%A9">UTC</a> (Wikipedia Fr)</li></ul>
4154<!-- /wp:list -->
4155
4156<!-- wp:heading -->
4157<h2>Serveur web</h2>
4158<!-- /wp:heading -->
4159
4160<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
4161<p class="has-vivid-green-cyan-background-color has-background">A <strong>web server</strong> is a computer containing software for, and connected to infrastructure for, <em>hosting</em>, or serving, web sites written in <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a>. The most common web server software on the internet is <a href="https://codex.wordpress.org/Glossary#Apache">Apache</a>, which is frequently used in conjunction with <a href="https://codex.wordpress.org/Glossary#PHP">PHP</a>, <a href="https://codex.wordpress.org/Glossary#Perl">Perl</a>, and other scripting languages.
4162</p>
4163<!-- /wp:paragraph -->
4164
4165<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
4166<p class="has-luminous-vivid-amber-background-color has-background">A <strong>web server</strong> is a computer containing software for, and connected to infrastructure for, <em>hosting</em>, or serving, web sites written in <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a>. The most common web server software on the internet is <a href="https://codex.wordpress.org/Glossary#Apache">Apache</a>, which is frequently used in conjunction with <a href="https://codex.wordpress.org/Glossary#PHP">PHP</a>, <a href="https://codex.wordpress.org/Glossary#Perl">Perl</a>, and other scripting languages.
4167</p>
4168<!-- /wp:paragraph -->
4169
4170<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
4171<p class="has-vivid-green-cyan-background-color has-background">It is possible to create one's own web server, hosted on any
4172speed of internet connection, but many people choose to purchase
4173packages from <a href="https://codex.wordpress.org/Glossary#Hosting_provider">hosting providers</a>,
4174 who have the capacity and facilities to provide adequate bandwidth,
4175uptime, hardware, and maintenance for frequently-visited web sites.
4176</p>
4177<!-- /wp:paragraph -->
4178
4179<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
4180<p class="has-luminous-vivid-amber-background-color has-background">It is possible to create one's own web server, hosted on any
4181speed of internet connection, but many people choose to purchase
4182packages from <a href="https://codex.wordpress.org/Glossary#Hosting_provider">hosting providers</a>,
4183 who have the capacity and facilities to provide adequate bandwidth,
4184uptime, hardware, and maintenance for frequently-visited web sites.
4185</p>
4186<!-- /wp:paragraph -->
4187
4188<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
4189<ul class="has-vivid-green-cyan-background-color has-background"><li> Related articles: <a href="https://codex.wordpress.org/Hosting_WordPress">Hosting WordPress</a></li></ul>
4190<!-- /wp:list -->
4191
4192<!-- wp:list -->
4193<ul><li>Articles en relation&nbsp;: <a href="https://fr.wordpress.org/about/requirements/">Prérequis WordPress</a></li></ul>
4194<!-- /wp:list -->
4195
4196<!-- wp:heading -->
4197<h2>Widget</h2>
4198<!-- /wp:heading -->
4199
4200<!-- wp:paragraph -->
4201<p>In WordPress a <strong>widget</strong> is a self-contained area of a web page
4202that performs a specific function, or the code that generates such a
4203self-contained area. For example, WordPress has a built-in widget that
4204displays a list of pages in a weblog's <a href="https://codex.wordpress.org/Glossary#Sidebar">sidebar</a>, and it has another built-in widget that displays a list of recent comments in the <a href="https://codex.wordpress.org/Glossary#Dashboard">Dashboard</a>. Plugins and themes can provide additional widgets.
4205</p>
4206<!-- /wp:paragraph -->
4207
4208<!-- wp:list -->
4209<ul><li>Related articles: <a href="https://codex.wordpress.org/WordPress_Widgets">WordPress Widgets</a>, <a href="https://codex.wordpress.org/Widgets_API">Widgets API</a>, <a href="https://codex.wordpress.org/Dashboard_Widgets_API">Dashboard Widgets API</a></li></ul>
4210<!-- /wp:list -->
4211
4212<!-- wp:heading {"level":3} -->
4213<h3>Zone du widget</h3>
4214<!-- /wp:heading -->
4215
4216<!-- wp:paragraph -->
4217<p>Furthermore, a "Widget Area" is a pre-defined location, in the code
4218of your WordPress Theme, that allows users to place Widgets into.
4219</p>
4220<!-- /wp:paragraph -->
4221
4222<!-- wp:heading -->
4223<h2>XFN</h2>
4224<!-- /wp:heading -->
4225
4226<!-- wp:paragraph -->
4227<p><a href="http://gmpg.org/xfn">The XHTML Friends Network</a>. A decentralised project to have inter-blog links that represent relationships between bloggers. XFN links resemble <code>&lt;a href="http://www.photomatt.net/" rel="friend met"&gt;Photo Matt&lt;/a&gt;</code>.
4228</p>
4229<!-- /wp:paragraph -->
4230
4231<!-- wp:heading -->
4232<h2>XHTML</h2>
4233<!-- /wp:heading -->
4234
4235<!-- wp:paragraph -->
4236<p><strong>XHTML</strong>, or <strong>Extensible HyperText Markup Language</strong>, is the successor to <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a> as the <a href="http://www.w3.org">W3C</a> standard language with which all web pages are created. It is often used in conjunction with <a href="https://codex.wordpress.org/Glossary#CSS">CSS</a> and <a href="https://codex.wordpress.org/Glossary#JavaScript">JavaScript</a>.
4237</p>
4238<!-- /wp:paragraph -->
4239
4240<!-- wp:paragraph -->
4241<p>WordPress strives to conform to the XHTML 1.0 Transitional standard.
4242</p>
4243<!-- /wp:paragraph -->
4244
4245<!-- wp:list -->
4246<ul><li>External links: <a href="http://www.w3.org/TR/xhtml1/">XHTML 1.0 Specification (Second Edition)</a>, <a href="http://www.w3.org/TR/xhtml11/">XHTML 1.1 Specification</a></li></ul>
4247<!-- /wp:list -->
4248
4249<!-- wp:heading -->
4250<h2>XML</h2>
4251<!-- /wp:heading -->
4252
4253<!-- wp:paragraph -->
4254<p><strong>XML</strong>, or <strong>Extensible Markup Language</strong>, is written in
4255Standard Generalized Markup Language (SGML) and essentially allows you
4256to define your own markup language.  XML is extremely useful in
4257describing, sharing, and transmitting data across the Internet.
4258Typically used in conjunction with <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a>, XML defines data and <a href="https://codex.wordpress.org/Glossary#HTML">HTML</a> displays that data.
4259</p>
4260<!-- /wp:paragraph -->
4261
4262<!-- wp:list -->
4263<ul><li>External links: <a href="http://www.w3.org/XML">Extensible Markup Language (XML) Resources at W3C org</a> <a href="http://www.ucc.ie/xml">XML 4.0 FAQ</a>, <a href="http://www.w3.org/MarkUp/SGML/">Overview of SGML Resources at W3C org</a></li></ul>
4264<!-- /wp:list -->
4265
4266<!-- wp:heading -->
4267<h2>XML-RPC</h2>
4268<!-- /wp:heading -->
4269
4270<!-- wp:paragraph -->
4271<p><strong>XML-RPC</strong> is <strong>Extensible Markup Language-Remote Procedure Call</strong>.
4272  A Remote Procedure Call (RPC) allows you to call (or request) another
4273application and expect that application to honor the request (answer the
4274 call).  So, <strong>XML-RPC</strong> allows a user (or <a href="https://codex.wordpress.org/Glossary#Developer">developer</a>) to send a request, formatted in <a href="https://codex.wordpress.org/Glossary#XML">XML</a>, to an external application.
4275</p>
4276<!-- /wp:paragraph -->
4277
4278<!-- wp:list -->
4279<ul><li>Related articles: <a href="https://codex.wordpress.org/XML-RPC_Support">XML-RPC Support</a></li><li>External links: <a href="http://davenet.scripting.com/1998/07/14/xmlRpcForNewbies">Dave Winer's XML-RPC for Newbies</a>, <a href="http://www.xmlrpc.com">XML-RPC Home Page</a>, <a href="http://ws.apache.org/xmlrpc/">Apache XML-RPC</a>, <a href="http://phpxmlrpc.sourceforge.net">XML-RPC for PHP Homepage</a>, <a href="http://en.wikipedia.org/wiki/XML-RPC">XML-RPC at Wikipedia</a></li></ul>
4280<!-- /wp:list -->
4281
4282<!-- wp:heading -->
4283<h2>Plus de ressources</h2>
4284<!-- /wp:heading -->
4285
4286<!-- wp:paragraph -->
4287<p>More glossaries with collection of blogging terms, acronyms and abbreviations.
4288</p>
4289<!-- /wp:paragraph -->
4290
4291<!-- wp:paragraph -->
4292<p>More glossaries with collection of blogging terms, acronyms and abbreviations.
4293</p>
4294<!-- /wp:paragraph -->
4295
4296<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
4297<ul class="has-vivid-green-cyan-background-color has-background"><li> <a href="http://www.quickonlinetips.com/archives/2006/06/the-giant-blogging-terms-glossary/">Giant Blogging Terms Glossary</a></li><li> <a href="http://en.wikipedia.org/wiki/List_of_blogging_terms">Blogging Terms at Wikipedia</a></li><li> <a href="https://www.wpglossary.net">External WordPress glossary with additional terms</a> </li></ul>
4298<!-- /wp:list -->
4299
4300<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
4301<ul class="has-luminous-vivid-amber-background-color has-background"><li><a href="http://www.quickonlinetips.com/archives/2006/06/the-giant-blogging-terms-glossary/">Giant Blogging Terms Glossary</a></li><li><a href="http://en.wikipedia.org/wiki/List_of_blogging_terms">Blogging Terms at Wikipedia</a></li><li><a href="https://www.wpglossary.net">External WordPress glossary with additional terms</a> </li></ul>
4302<!-- /wp:list -->
4303
4304<!-- wp:paragraph {"backgroundColor":"vivid-green-cyan"} -->
4305<p class="has-vivid-green-cyan-background-color has-background"><a href="https://codex.wordpress.org/Special:Categories">Categories</a>: </p>
4306<!-- /wp:paragraph -->
4307
4308<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
4309<p class="has-luminous-vivid-amber-background-color has-background"><a href="https://codex.wordpress.org/Special:Categories">Categories</a>: </p>
4310<!-- /wp:paragraph -->
4311
4312<!-- wp:list {"backgroundColor":"vivid-green-cyan"} -->
4313<ul class="has-vivid-green-cyan-background-color has-background"><li><a href="https://codex.wordpress.org/Category:WordPress_Help">WordPress Help</a></li><li><a href="https://codex.wordpress.org/Category:Troubleshooting">Troubleshooting</a></li><li><a href="https://codex.wordpress.org/Category:Getting_Started">Getting Started</a></li><li><a href="https://codex.wordpress.org/Category:Advanced_Topics">Advanced Topics</a></li><li><a href="https://codex.wordpress.org/Category:UI_Link">UI Link</a></li></ul>
4314<!-- /wp:list -->
4315
4316<!-- wp:list {"backgroundColor":"luminous-vivid-amber"} -->
4317<ul class="has-luminous-vivid-amber-background-color has-background"><li><a href="https://codex.wordpress.org/Category:WordPress_Help">WordPress Help</a></li><li><a href="https://codex.wordpress.org/Category:Troubleshooting">Troubleshooting</a></li><li><a href="https://codex.wordpress.org/Category:Getting_Started">Getting Started</a></li><li><a href="https://codex.wordpress.org/Category:Advanced_Topics">Advanced Topics</a></li><li><a href="https://codex.wordpress.org/Category:UI_Link">UI Link</a></li></ul>
4318<!-- /wp:list -->
4319
4320<!-- wp:paragraph {"className":"has-text-color has-background has-very-light-gray-background-color"} -->
4321<p class="has-text-color has-background has-very-light-gray-background-color">Traduit par&nbsp;: <a href="https://profiles.wordpress.org/chaton666/">Marie Comet</a>, <a href="https://profiles.wordpress.org/papicx/" data-type="URL" data-id="https://profiles.wordpress.org/papicx/">Patrice Pichon</a><br>Relu par <a href="https://profiles.wordpress.org/">Prénom Nom</a> (lien profil wp.org) &amp; <a href="https://profiles.wordpress.org/">Prénom Nom</a> (lien profil wp.org)<br>D’après la page anglaise du 28/01/2020<br>Dernière mise à jour le 04 Décembre 2020 , 20h02</p>
4322<!-- /wp:paragraph -->
4323
4324<!-- wp:paragraph {"backgroundColor":"luminous-vivid-amber"} -->
4325<p class="has-luminous-vivid-amber-background-color has-background"><span class="has-inline-color has-vivid-red-color">Attention ! la page anglaise a été modifiée le 25/11/2020</span></p>
4326<!-- /wp:paragraph -->
4327
4328<!-- wp:paragraph -->
4329<p><a href="https://fr.wordpress.org/team/category/traduction-de-la-documentation/">Contribuer à la documentation en français de WordPress</a></p>
4330<!-- /wp:paragraph -->
4331
4332<!-- wp:paragraph -->
4333<p></p>
4334<!-- /wp:paragraph -->