</p>

				<p class="email">
					<label for="email">Your email address:</label>
					<?php 
    echo comment_form_input_email('placeholder="Your email (won’t be published)"');
    ?>
				</p>

				<p class="textarea">
					<label for="text">Your comment:</label>
					<?php 
    echo comment_form_input_text('placeholder="Your comment"');
    ?>
				</p>

				<p class="submit">
					<?php 
    echo comment_form_button();
    ?>
				</p>
			</form>

		</section>
		<?php 
}
?>
		-->

<?php 
theme_include('footer');
Beispiel #2
0
                                                <div class="form-group col-xs-12 floating-label-form-group controls">
                                                    <label>Email-adress</label>
                                                    <?php 
    echo comment_form_input_email('placeholder="Your email-adress"');
    ?>
                                                </div>
                                            </div>
                                            <div class="row control-group">
                                                <div class="form-group col-xs-12 floating-label-form-group controls">
                                                    <label>Comment</label>
                                                    <?php 
    echo comment_form_input_text('placeholder="Your comment"');
    ?>
                                                </div>
                                            </div>
                                            <br>
                                            <div id="success"><?php 
    echo comment_form_notifications();
    ?>
</div>
                                            <div class="row">
                                                <div class="form-group col-xs-12">
                                                    <?php 
    echo comment_form_button($text = 'And there we go!', $extra = '');
    ?>
                                                </div>
                                            </div>
                                        </form>

                            <?php 
}
Beispiel #3
0
            </div>
            <div class="row control-group">
                <div class="form-group col-xs-12 controls floating-label-form-group">
                    <label>Email-adress</label>
                    <?php 
    echo comment_form_input_email('placeholder="Your email-adress" class="form-control"');
    ?>
                </div>
            </div>
            <div class="row control-group">
                <div class="form-group col-xs-12 controls floating-label-form-group">
                    <label>Comment</label>
                    <?php 
    echo comment_form_input_text('placeholder="Your comment" class="form-control"');
    ?>
                </div>
            </div>
            <div id="success"><?php 
    echo comment_form_notifications();
    ?>
</div>
            <div id="submit-button" class="row">
                <div class="form-group col-xs-12">
                    <?php 
    echo comment_form_button($text = 'Submit', $extra = '');
    ?>
                </div>
            </div>
        </form>
<?php 
}
			<?php 
if (comments_open()) {
    ?>
				<form id="comment" method="post" action="<?php 
    echo comment_form_url();
    ?>
#comment">
					<?php 
    echo comment_form_notifications();
    ?>
<!-- Error notifications -->
					<?php 
    echo comment_form_input_name('placeholder="Your Name"');
    ?>
					<?php 
    echo comment_form_input_email('placeholder="Your Email"', $extra = '');
    ?>
					<?php 
    echo comment_form_input_text('placeholder="Your comment"');
    ?>
					<?php 
    echo comment_form_button($text = 'Post Comment', $extra = '');
    ?>
				</form>
			<?php 
}
?>
		</section>

<?php 
theme_include('footer');