Skip to content

Instantly share code, notes, and snippets.

You're a Travel Blogger, and with that comes many questions from those who follow you possibly looking for travel advice, or who may simply be curious about your travel specifics. Either way, you likely answer the same questions repeatedly. I've incorporated a simple, and clean styled FAQ page to help keep things efficient. You can even add a button into your answers if you'd like your readers to click over to a specific page, the button is also styled within this theme and can easily be added anywhere on your site.
<blockquote>
<h3>A Question Here</h3>
Your answer here, your answer here. These can be easily recreated with a blockquote built into this theme. Check the setup tutorials for more details.
<a href="#" class="button"> button</a>
</blockquote>
<blockquote>
<h3>A Question Here</h3>
update_option( 'siteurl', 'http://example.com' );
update_option( 'home', 'http://example.com' );
.error404 {
background: #fff url(your image url here) top center fixed no-repeat;
background-size: cover;
}
@lindseyriel
lindseyriel / Genesis After Post Signature
Created May 1, 2015 18:17
Genesis After Post Signature
// Add Signature Image after single post
add_action('genesis_entry_footer', 'custom_include_signature', 1);
function custom_include_signature() {
if(is_single()) { ?>
<img src=" Url Here" alt="Signature" />
<?php }}