Title: People Page
Author: jethin
Published: <strong>11 mars 2013</strong>
Last modified: 8 août 2014

---

Recherche d’extensions

Cette extension **n’a pas été testée avec plus de trois mises à jour majeures de
WordPress**. Elle peut ne plus être maintenue ou supportée et peut avoir des problèmes
de compatibilité lorsqu’elle est utilisée avec des versions de WordPress plus récentes.

![](https://s.w.org/plugins/geopattern-icon/people-page.svg)

# People Page

 Par [jethin](https://profiles.wordpress.org/jethin/)

[Télécharger](https://downloads.wordpress.org/plugin/people-page.1.1.zip)

 * [Détails](https://fr.wordpress.org/plugins/people-page/#description)
 * [Avis](https://fr.wordpress.org/plugins/people-page/#reviews)
 *  [Installation](https://fr.wordpress.org/plugins/people-page/#installation)
 * [Développement](https://fr.wordpress.org/plugins/people-page/#developers)

 [Support](https://wordpress.org/support/plugin/people-page/)

## Description

This plugin allows editors to create a « People Page » that displays a list of selected
site users with photos, bios, titles, profile and website links and more.

When activated via a page template, the plugin creates a drag and drop meta box 
which editors can use to select users and create headers. These users are listed
on the people page template, along with links to their full profile when applicable.

The plugin also creates custom « Title » and « Photo » fields on the « User Edit»
admin screen, which are used in theme pages. The plugin also supports « User Photo»
plugin images and gravatars.

Three template files for both the “Twenty Twelve” and “Twenty Thirteen” themes are
included within the /theme-templates/ directory:

 * **« people-page.php »** displays the people page index list
 * **« author.php »** displays a single user’s info page
 * **“people-page.css”** contains basic people page styles for each theme; this 
   file can be customized

See « Other Notes » for more details and usage instructions.
 **Required Theme Files**

After installation a « people-page.php » template must be created inside your theme’s
folder in order to use the plugin. Default templates (based on the Twenty Twelve
and Twenty Thirteen themes) are included inside the plugin’s ‘theme-templates’ directory.
Copy this file to your theme’s directory if you wish to use it. You can also create
a custom template from your site’s theme:

 1. Duplicate the « page.php » file in your theme’s folder and rename it « people-page.
    php »
 2. Assign your new page as a template by entering the following comment directly after
    the first php tag: /* Template Name: People Page */
 3. Insert the people page _index_ function after the WordPress loop (or wherever you’d
    like it to appear):

_Excerpt Length Argument (integer, optional)_: Set the character limit where « Biographical
Info » will be excerpted. Default = 420.

A CSS stylesheet « people-page.css » that contains basic styles can be found in 
each of the ‘theme-templates’ subdirectories. Copy it into your theme’s directory
to apply the default styles. The styles in this file can be altered to better match
your theme.

You may also wish to customize your theme’s « author.php » template, which is used
to display users’ profiles. A sample « author.php » file (based on the Twenty Twelve
theme) is included in the ‘theme-templates’. To use your theme’s existing « author.
php » file, insert the people page _author_ function after the loop (or wherever
you’d like it to appear):

    ```
    <?php echo people_page_author(); ?>
    ```

The people page data is stored as an array of user IDs and heading strings. You 
can access this array directly in your theme using get_post_meta():

    ```
    <?php $people = get_post_meta( $post->ID, 'peeps', true ); ?>
    ```

**Using the Plugin**

To activate the plugin, set a page’s template to use the « People Page » template
and update the page. You should now see the people page meta box in the center column.
Use this area to select and arrange users and create section headings if desired.

**Additional User Edit / Profile Fields**

« Title » and « Photo » fields (optional) are added to the bottom of the « Edit 
User » admin page when the plugin is activated. When set these fields are included
in people page displays. If a photo is not set the plugin will attempt to display
1) a photo set using the « User Photo » plugin or 2) a gravatar. Gravatar size is
150 pixels by default.

**Default Displays**

_People Page_

 * Photo (if set; if not set and available: « User Photo » image; gravatar)
 * Name (linked if « Biographical Info » field is excerpted)
 * Title (if set)
 * [ posts | website ] (links if: User has posts (to profile) | website if field
   is set)
 * Biographical Info (includes link to profile if text is excerpted)

_Author Page_

 * Photo (if set; if not set and available: « User Photo » image; gravatar)
 * Name
 * Title (if set)
 * [ website ] (if set)
 * Biographical Info
 * Posts (last three; post details: date, and excerpt – if set: comment number, 
   category, tags)

## Captures d’écrans

 * [[
 * The « Edit Page » admin screen with « People Page » template selected (right)
   and displaying the people page meta box (center). « Active » users will be included
   on the people page.
 * [[
 * A people page template based on the Twenty Twelve theme. It lists active users,
   meta information, biographical excerpts and links to users’ profile page (author.
   php).
 * [[
 * A user profile page (author.php) based on the Twenty Twelve them showing full
   biographical information and latest posts (three maximum).

## Installation

 1. Download and unzip the plugin file.
 2. Upload the unzipped ‘people-page’ directory to your ‘/wp-content/plugins/’ directory.
 3. Activate the plugin through the ‘Plugins’ menu in WordPress.
 4. See « Other Notes » for usage instructions.

## Avis

![](https://secure.gravatar.com/avatar/4af1edbc8af2cf14762254c2c563926006141c3ab513681fe86b0bfb42a8b830?
s=60&d=retro&r=g)

### 󠀁[Can't activate it](https://wordpress.org/support/topic/cant-activate-it-2/)󠁿

 [vynnus](https://profiles.wordpress.org/vynnus/) 3 septembre 2016

Any chance of this plugin to be updated? I can’t activate it on WP 4.4.1

 [ Lire les 3 avis ](https://wordpress.org/support/plugin/people-page/reviews/)

## Contributeurs/contributrices & développeurs/développeuses

« People Page » est un logiciel libre. Les personnes suivantes ont contribué à cette
extension.

Contributeurs

 *   [ jethin ](https://profiles.wordpress.org/jethin/)

[Traduisez « People Page » dans votre langue.](https://translate.wordpress.org/projects/wp-plugins/people-page)

### Le développement vous intéresse ?

[Parcourir le code](https://plugins.trac.wordpress.org/browser/people-page/), consulter
le [SVN dépôt](https://plugins.svn.wordpress.org/people-page/), ou s’inscrire au
[journal de développement](https://plugins.trac.wordpress.org/log/people-page/) 
par [RSS](https://plugins.trac.wordpress.org/log/people-page/?limit=100&mode=stop_on_copy&format=rss).

## Journal des modifications

#### 1.1

 * Updated for WordPress 3.9.1 compatibility; Added templates for Twenty Thirteen
   theme; Visual editor on users’ “Biographical Info” field.

#### 1.0

 * Initial release.

## Méta

 *  Version **1.1**
 *  Dernière mise à jour **il y a 12 ans**
 *  Installations actives **20+**
 *  Version de WordPress ** 3.0 ou plus **
 *  Testé jusqu’à **3.9.40**
 *  Langue
 * [English (US)](https://wordpress.org/plugins/people-page/)
 * Étiquettes
 * [authors](https://fr.wordpress.org/plugins/tags/authors/)[bios](https://fr.wordpress.org/plugins/tags/bios/)
   [photos](https://fr.wordpress.org/plugins/tags/photos/)[staff](https://fr.wordpress.org/plugins/tags/staff/)
   [users](https://fr.wordpress.org/plugins/tags/users/)
 *  [Vue avancée](https://fr.wordpress.org/plugins/people-page/advanced/)

## Évaluations

 3.3 sur 5 étoiles.

 *  [  1 avis à 5 étoile     ](https://wordpress.org/support/plugin/people-page/reviews/?filter=5)
 *  [  0 avis à 4 étoile     ](https://wordpress.org/support/plugin/people-page/reviews/?filter=4)
 *  [  1 avis à 3 étoile     ](https://wordpress.org/support/plugin/people-page/reviews/?filter=3)
 *  [  1 avis à 2 étoile     ](https://wordpress.org/support/plugin/people-page/reviews/?filter=2)
 *  [  0 avis à 1 étoile     ](https://wordpress.org/support/plugin/people-page/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/people-page/reviews/#new-post)

[Voir tous les avis](https://wordpress.org/support/plugin/people-page/reviews/)

## Contributeurs

 *   [ jethin ](https://profiles.wordpress.org/jethin/)

## Support

Quelque chose à dire ? Besoin d’aide ?

 [Voir le forum de support](https://wordpress.org/support/plugin/people-page/)

## Faire un don

Souhaitez-vous soutenir l’avancement de cette extension ?

 [ Faire un don à cette extension ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MJZSQZA3VVZ8W)