This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en-US" class="no-js no-svg"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>WordCamp Europe 2017 – June 15-17, Paris, France | #WCEU</title> | |
This file contains hidden or 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 | |
/** | |
* @Uses wp_mail() to send out email address | |
* from a single field form. | |
* Here is the form: | |
************************************************************************************ | |
<form id="newsletterForm" action="<?php the_permalink(); ?>" method="POST"> | |
<div class="input-group"> | |
<input class="form-control" | |
placeholder="Email Address" |
This file contains hidden or 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 | |
/** | |
* Define WTO settings file | |
*/ | |
function valuadd_settings_file() { | |
if ( file_exists( VALA_THEME_SETTINGS ) ) { | |
$theme_settings = VALA_THEME_SETTINGS; | |
} else { | |
$theme_settings = VALA_THEME_SETTINGS_VALU; |
This file contains hidden or 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 | |
/** | |
* Template Name: Country Listing | |
* | |
* This is copy of the search template. | |
* modified by Codeable @tradesouthwest | |
* @uses custom_cat type for a country slug | |
*/ | |
get_header(); | |
do_action( 'before_content' ); |
NewerOlder