This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="respond" class="comment-respond"> | |
<h3 id="reply-title" class="comment-reply-title">Laisser un commentaire | |
<small> | |
<a rel="nofollow" id="cancel-comment-reply-link" href="#respond" style="display:none;">Annuler la réponse.</a> | |
</small> | |
</h3> | |
<form action="#" method="post" id="commentform" class="comment-form" novalidate> | |
<p class="comment-notes"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function twentyfourteen_setup() { | |
// Enable support for Post Thumbnails, and declare two sizes. | |
add_theme_support( 'post-thumbnails' ); | |
// This theme uses wp_nav_menu() in two locations. | |
register_nav_menus( array( | |
'primary' => 'Menu principal', | |
) ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: 4m - BBpress fix | |
* Plugin URI: http://4mation.com.au | |
* Description: Fix queries when user is not logged in. | |
* Version: 1.0 | |
* Author: 4mation | |
* Author URI: http://www.4mationtechnologies.com.au | |
* License: A "Slug" license name e.g. GPL2 | |
*/ |