I have a wordpress theme generated through Artisteer and no one can help me there. I just wanted to know how to insert adsense on my post via single.php?This is the single php code..please help..thanks! <?php /** * * single.php * * The single post template. Used when a single post is queried. * */ get_header(); ?> <div class="art-layout-wrapper"> <div class="art-content-layout"> <div class="art-content-layout-row"> <div class="art-layout-cell art-sidebar1"> <?php get_sidebar('default'); ?> <div class="cleared"></div> </div> <div class="art-layout-cell art-content"> <?php get_sidebar('top'); ?> <?php if (have_posts()){ /* Display navigation to next/previous posts when applicable */ if (theme_get_option('theme_top_single_navigation')) { theme_page_navigation( array( 'next_link' => theme_get_previous_post_link('« %link'), 'prev_link' => theme_get_next_post_link('%link »') ) ); } while (have_posts()) { the_post(); get_template_part('content', 'single'); /* Display comments */ if ( theme_get_option('theme_allow_comments')) { comments_template(); } } /* Display navigation to next/previous posts when applicable */ if (theme_get_option('theme_bottom_single_navigation')) { theme_page_navigation( array( 'next_link' => theme_get_previous_post_link('« %link'), 'prev_link' => theme_get_next_post_link('%link »') ) ); } } else { theme_404_content(); } ?> <?php get_sidebar('bottom'); ?> <div class="cleared"></div> </div> <div class="art-layout-cell art-sidebar2"> <?php get_sidebar('secondary'); ?> <div class="cleared"></div> </div> </div> </div> </div> <div class="cleared"></div> <?php get_footer(); ?>
Also if that one doesn't work try this one: http://wordpress.org/extend/plugins/wp-insert/ And if your looking for more ad placement powa try this one: http://www.wptraffictools.com.
Thanks guys...I dont like to use any plugin...I prefer adding code to the single.php instead, just cant seem to figure it out with this theme, that's why I posted...so if anyone has coding knowledge, please help.
I want it wrap around the text on the top right...I already have the code for that I just can't figure out which part to insert it in....
I believe you'll do this: while (have_posts()) { the_post(); /*INSERT ADVERTISEMENT CODE HERE*/ get_template_part('content', 'single'); PHP: