WP Admin Page Showing Blank for Every Menu Clicks
-
Im using the child theme. However, nothing has changed or new plugin installed.
My last done was on the function.php where I wanted to insert adsense at the last of every single post.
Pasted this after following steps. I did insert the code before saving.
However, not able to recover by deleting the code below.
Pls Help.function adsensesinglebottom($content) { if(is_single()) { global $post; $content = $content.' <div id="adsinglebottom"> INSERT ADSENSE CODE HERE </div>'; } return $content; } add_filter( 'the_content', 'adsensesinglebottom' );
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘WP Admin Page Showing Blank for Every Menu Clicks’ is closed to new replies.