',
- ));
+ function kspace_post_supports() {
+ add_post_type_support( 'post', 'excerpt');
+ }
-/* 2. Niveau support (for featured posts) */
+ add_action( 'init', 'kspace_post_supports' );
+
+ add_theme_support( 'post-thumbnails' );
+ set_post_thumbnail_size( 825, 510, true );
+
+/* 1. Niveau support
+ *
+ * Permet d'afficher les niveaux de post pour les post features
+ */
register_taxonomy(
'niveau',
@@ -41,18 +49,11 @@ register_taxonomy(
register_taxonomy_for_object_type( 'niveau', 'post' );
-/* 3. Excerpt and thumbnail support */
-
-function wpqdouze_post_supports() {
- add_post_type_support( 'post', 'excerpt');
-}
-
-add_action( 'init', 'wpqdouze_post_supports' );
-
-add_theme_support( 'post-thumbnails' );
-set_post_thumbnail_size( 825, 510, true );
-
-/* 4. Social Network */
+/* 2. Réseaux sociaux
+ *
+ * Permet d'afficher les réseaux sociaux en bas du post.
+ *
+ */
function mypost_social_sharing_buttons($content) {
// Fork of mypost_social_sharing_buttons
@@ -103,25 +104,32 @@ function mypost_social_sharing_buttons($content) {
};
add_filter( 'the_content', 'mypost_social_sharing_buttons');
+/* 3. Plus d'info sur les tags
+ *
+ * Permet d'afficher un lien vers plus d'informations.
+ * Le liens est gardé comme un champ supplémentaire dans les tags.
+ *
+ */
+
add_action( 'post_tag_add_form_fields', 'kspace_add_term_fields' );
function kspace_add_term_fields( $taxonomy ) {
echo '
-
+
Une URL permettant d\'obtenir plus d\'information sur le tag.