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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Simple 2 Columns</title> | |
</head> | |
<style> | |
.column { | |
float: left; | |
width: 10%; |
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 $catquery = new WP_Query( 'cat=72&posts_per_page=5' ); ?> | |
<ul> | |
<?php while($catquery->have_posts()) : $catquery->the_post(); ?> | |
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li> | |
<?php endwhile; | |
wp_reset_postdata(); | |
?> |
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
function main() { | |
AdWordsApp.createLabel("PausedCTR", "ad group paused due to declining CTR", "red"); | |
AdWordsApp.createLabel("PausedCPA", "ad groups paused due to declining Conversions", "yellow"); | |
//NOTE: set your max CPA value. You don't want to pause an ad group with a rising CPA unless that CPA goes over your limit. | |
var cpaMax = 0; | |
var adGroupsIterator = AdWordsApp.adGroups() | |
.withCondition("Clicks > 25") |
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
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | |
* Quality Score Tracker v3.0 | |
* Written by Martin Roettgerding. | |
* © 2016 Martin Roettgerding, Bloofusion Germany GmbH. | |
* www.ppc-epiphany.com/qstracker/latest | |
*/ | |
function main(){ | |
/* | |
* The following preferences can be changed to customize this script. | |
* Most of options can be set by using 1 for yes or 0 for no. |
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
// Copyright 2015 - Optmyzr Inc. | |
// All rights reserved | |
// For an Enhanced Script version of this script which works at the MCC level and is easier to modify, visit www.optmyzr.com | |
function main() { | |
var SETTINGS = new Object(); | |
// --- CHANGE THESE SETTINGS |
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
<p>[footer_copyright before="Copyright"] · <a href="http://honeypotlabs.com">Honeypot Labs</a> is a <a href="http://honeypotmarketing.com">Honeypot Marketing</a> Gig, built upon the shoulders of true giants · [footer_wordpress_link] · [footer_loginout]</a></p> |
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
DirectorySlash Off | |
RewriteRule ^tag/?$ /betting [L,R=301] | |
RewriteRule ^tag/(.*)$ /betting/$1 [L,R=301] | |
</IfModule> |