Esempio n. 1
0
					</div><!-- /shadowblock -->

				</div><!-- /shadowblock_out -->


			<?php 
}
?>


            <div class="pad5"></div>

            <div class="clr"></div>

						<?php 
appthemes_advertise_content();
?>

            <div class="clr"></div>


        </div><!-- /content_left -->


        <?php 
get_sidebar();
?>

        <div class="clr"></div>

Esempio n. 2
0
/**
 * Adds the blog and ad listing category/search banner ad.
 *
 * @since 3.5
 *
 * @return void
 */
function cp_category_search_ad_banner()
{
    global $post;
    if (!is_category() && !is_tax(APP_TAX_CAT) && !is_search()) {
        return;
    }
    appthemes_advertise_content();
}
/**
 * add the blog and ad listing single page banner ad 
 * @since 3.1.3
 */
function cp_single_ad_banner()
{
    global $post;
    if (!is_singular(array('post', APP_POST_TYPE))) {
        return;
    }
    appthemes_advertise_content();
}
Esempio n. 4
0
/**
 * invokes the 336x280 advertise section, called in content
 *
 * @deprecated Use appthemes_advertise_content()
 * @see appthemes_advertise_content()
 */
function appthemes_single_ad_336x280()
{
    _deprecated_function(__FUNCTION__, '2012-11-30', 'appthemes_advertise_content()');
    return appthemes_advertise_content();
}