I am normally game enough to try and insert some google adsense into the code of the sidebar of any wordpress theme i am using but for my site recipeebook.net i just cant get it work without the site dropping out and me having to delete the code in the public files at my hosting, at least i can find my way there to do this but i really would love to get some adsense in the sibebar on this site
I will paste the code here and be grateful for any suggestions, maybe i should be trying to insert it somewhere else .....thems functions, stylesheets .....etc,
I would be grateful for any advice
<?php
// tokens
$ew = '<!-- end_widget -->';
$bt = '<!-- begin_title -->';
$et = '<!-- end_title -->';
$bi = '<!-- begin_id -->';
$ei = '<!-- end_id -->';
$bc = '<!-- begin_class -->';
$ec = '<!-- end_class -->';
$sidebars = array(
'default' => array(
'name' => __('Primary Widget Area',THEME_NS),
'id' => 'primary-widget-area',
'description' => __("This is the default sidebar, visible on 2 or 3 column layouts. If no widgets are active, the default theme widgets will be displayed instead.", THEME_NS)
),
'secondary' => array(
'name' => __('Secondary Widget Area',THEME_NS),
'id' => 'secondary-widget-area',
'description' => __("This sidebar is active only on a 3 column setup.", THEME_NS)
),
'top' => array(
'name' => __('Top Widget Area',THEME_NS),
'id' => 'top-widget-area',
'description' => __("This sidebar is displayed above the main content.", THEME_NS)
),
'bottom' => array(
'name' => __('Bottom Widget Area',THEME_NS),
'id' => 'bottom-widget-area',
'description' => __("This sidebar is displayed below the main content.", THEME_NS)
),
'footer' => array(
'name' => __('First Footer Widget Area',THEME_NS),
'id' => 'first-footer-widget-area',
'description' => __("The first footer widget area. You can add a text widget for custom footer text.", THEME_NS)
),
'footer2' => array(
'name' => __('Second Footer Widget Area',THEME_NS),
'id' => 'second-footer-widget-area',
'description' => __("The second footer widget area.", THEME_NS)
),
'footer3' => array(
'name' => __('Third Footer Widget Area',THEME_NS),
'id' => 'third-footer-widget-area',
'description' => __("The third footer widget area.", THEME_NS)
),
'footer4' => array(
'name' => __('Fourth Footer Widget Area',THEME_NS),
'id' => 'fourth-footer-widget-area',
'description' => __("The fourth footer widget area.", THEME_NS)
),
);
$args = array(
'before_widget' => $bi . '%1$s' . $ei . $bc . 'widget %2$s' .$ec,
'before_title' => $bt,
'after_title' => $et,
'after_widget' => $ew
);
if (function_exists('register_sidebar')) {
foreach ($sidebars as $sidebar)
{
register_sidebar( array_merge($sidebar, $args));
}
}
function art_get_widget_param(&$widget, $startToken, $endToken){
if (!$widget) return "";
$stPos = strpos($widget, $startToken);
$etPos = strpos($widget, $endToken);
$result = "";
if( $stPos !== false && $etPos !== false){
$start = $stPos + strlen($startToken);
$result= substr($widget, $start, $etPos - $start);
$widget = substr($widget, 0, $start) . substr($widget, $etPos);
}
$widget = str_replace($startToken, '', $widget);
$widget = str_replace($endToken, '', $widget);
return $result;
}
function art_get_widget_id(&$widget){
global $bi, $ei;
return art_get_widget_param($widget, $bi, $ei);
}
function art_get_widget_class(&$widget){
global $bc, $ec;
return art_get_widget_param($widget, $bc, $ec);
}
function art_get_widget_title(&$widget){
global $bt, $et;
return art_get_widget_param($widget, $bt, $et);
}
function art_get_dynamic_sidebar_data($name){
global $ew, $sidebars;
if (!function_exists('dynamic_sidebar')) return false;
ob_start();
$success = dynamic_sidebar($sidebars[$name]['id']);
$content = ob_get_clean();
if (!$success) return false;
$data = explode($ew, $content);
$widgets = array();
for($i = 0; $i < count($data)-1; $i++){
$widget = $data[$i];
if(!str_replace(array(' ', "\n", '\r'), '', $widget)) continue;
$widgets[] = array(
'id' => art_get_widget_id($widget),
'class' => art_get_widget_class($widget),
'title' => art_get_widget_title($widget),
'content' => $widget
);
}
return $widgets;
}
function art_print_widgets($widgets, $callback = 'art_print_block_widget'){
if (!is_array($widgets) || count($widgets) < 1) return false;
for($i = 0; $i < count($widgets); $i++){
$widget = $widgets[$i];
if ($widget['id']) {
if (function_exists($callback)) {
call_user_func($callback, $widget);
} else {
art_print_block_widget($widget);
}
} else {
echo $widget['content'];
}
}
return true;
}
function art_print_block_widget($widget){
echo art_get_block(
$widget['title'],
$widget['content'],
$widget['id'],
$widget['class']);
}
function art_print_footer_widget($widget){
echo '<ul id="'.$widget['id'].'" class="'.$widget['class'].' art-widget">';
if ($widget['title']){
echo '<li class="art-widget-title">'.$widget['title'].'</li>';
}
echo '<li class="art-widget-content">'.$widget['content'].'</li>';
echo '</ul>';
}
function art_dynamic_sidebar($name){
global $sidebars;
if ($name == 'footer') {
$footers = array();
$sum_count = 0;
foreach ($sidebars as $key => $sidebar)
{
if (strpos($key, 'footer') !== false){
$widgets = art_get_dynamic_sidebar_data($key);
if (is_array($widgets)){
$count = count($widgets);
if ($count > 0){
$sum_count += $count;
$footers[$key] = $widgets;
}
}
}
}
if ($sum_count == 0) {
return false;
}
echo '<div class="art-content-layout">';
echo ' <div class="art-content-layout-row">';
$footers_count = count($footers);
foreach ($footers as $footer)
{
echo '<div class="art-layout-cell art-layout-cell-size'.$footers_count.'">';
art_print_widgets($footer, 'art_print_footer_widget');
echo '<div class="cleared"> </div>';
echo '</div>';
}
echo ' </div>';
echo '</div>';
return true;
}
$widgets = art_get_dynamic_sidebar_data($name);
return art_print_widgets($widgets);
}
function art_get_sidebar($name){
ob_start();
if (!art_dynamic_sidebar($name)) {
$sidebar = art_option('sidebars.'.$name);
if ($sidebar) {
$blocks = explode(',', $sidebar);
for($i = 0; $i < count($blocks); $i++){
$block = $blocks[$i];
switch($block) {
case 'search':
echo art_get_block( __('Search', THEME_NS), art_get_search());
break;
case 'archive':
ob_start();
wp_get_archives('type=monthly&title_li=');// 2.6 not supported echo=0
echo art_get_block( __('Archives', THEME_NS), '<ul>'.ob_get_clean().'</ul>');
break;
case 'categories':
echo art_get_block( __('Categories', THEME_NS), '<ul>'.wp_list_categories('show_count=1&title_li=&echo=0').'</ul>');
break;
case 'blogroll':
echo art_get_block( __('Bookmarks', THEME_NS), '<ul>'.wp_list_bookmarks('title_li=&categorize=0&echo=0').'</ul>');
break;
case 'vmenu':
echo art_get_vmenu();
break;
}
}
}
}
return ob_get_clean();
}
I will paste the code here and be grateful for any suggestions, maybe i should be trying to insert it somewhere else .....thems functions, stylesheets .....etc,
I would be grateful for any advice
<?php
// tokens
$ew = '<!-- end_widget -->';
$bt = '<!-- begin_title -->';
$et = '<!-- end_title -->';
$bi = '<!-- begin_id -->';
$ei = '<!-- end_id -->';
$bc = '<!-- begin_class -->';
$ec = '<!-- end_class -->';
$sidebars = array(
'default' => array(
'name' => __('Primary Widget Area',THEME_NS),
'id' => 'primary-widget-area',
'description' => __("This is the default sidebar, visible on 2 or 3 column layouts. If no widgets are active, the default theme widgets will be displayed instead.", THEME_NS)
),
'secondary' => array(
'name' => __('Secondary Widget Area',THEME_NS),
'id' => 'secondary-widget-area',
'description' => __("This sidebar is active only on a 3 column setup.", THEME_NS)
),
'top' => array(
'name' => __('Top Widget Area',THEME_NS),
'id' => 'top-widget-area',
'description' => __("This sidebar is displayed above the main content.", THEME_NS)
),
'bottom' => array(
'name' => __('Bottom Widget Area',THEME_NS),
'id' => 'bottom-widget-area',
'description' => __("This sidebar is displayed below the main content.", THEME_NS)
),
'footer' => array(
'name' => __('First Footer Widget Area',THEME_NS),
'id' => 'first-footer-widget-area',
'description' => __("The first footer widget area. You can add a text widget for custom footer text.", THEME_NS)
),
'footer2' => array(
'name' => __('Second Footer Widget Area',THEME_NS),
'id' => 'second-footer-widget-area',
'description' => __("The second footer widget area.", THEME_NS)
),
'footer3' => array(
'name' => __('Third Footer Widget Area',THEME_NS),
'id' => 'third-footer-widget-area',
'description' => __("The third footer widget area.", THEME_NS)
),
'footer4' => array(
'name' => __('Fourth Footer Widget Area',THEME_NS),
'id' => 'fourth-footer-widget-area',
'description' => __("The fourth footer widget area.", THEME_NS)
),
);
$args = array(
'before_widget' => $bi . '%1$s' . $ei . $bc . 'widget %2$s' .$ec,
'before_title' => $bt,
'after_title' => $et,
'after_widget' => $ew
);
if (function_exists('register_sidebar')) {
foreach ($sidebars as $sidebar)
{
register_sidebar( array_merge($sidebar, $args));
}
}
function art_get_widget_param(&$widget, $startToken, $endToken){
if (!$widget) return "";
$stPos = strpos($widget, $startToken);
$etPos = strpos($widget, $endToken);
$result = "";
if( $stPos !== false && $etPos !== false){
$start = $stPos + strlen($startToken);
$result= substr($widget, $start, $etPos - $start);
$widget = substr($widget, 0, $start) . substr($widget, $etPos);
}
$widget = str_replace($startToken, '', $widget);
$widget = str_replace($endToken, '', $widget);
return $result;
}
function art_get_widget_id(&$widget){
global $bi, $ei;
return art_get_widget_param($widget, $bi, $ei);
}
function art_get_widget_class(&$widget){
global $bc, $ec;
return art_get_widget_param($widget, $bc, $ec);
}
function art_get_widget_title(&$widget){
global $bt, $et;
return art_get_widget_param($widget, $bt, $et);
}
function art_get_dynamic_sidebar_data($name){
global $ew, $sidebars;
if (!function_exists('dynamic_sidebar')) return false;
ob_start();
$success = dynamic_sidebar($sidebars[$name]['id']);
$content = ob_get_clean();
if (!$success) return false;
$data = explode($ew, $content);
$widgets = array();
for($i = 0; $i < count($data)-1; $i++){
$widget = $data[$i];
if(!str_replace(array(' ', "\n", '\r'), '', $widget)) continue;
$widgets[] = array(
'id' => art_get_widget_id($widget),
'class' => art_get_widget_class($widget),
'title' => art_get_widget_title($widget),
'content' => $widget
);
}
return $widgets;
}
function art_print_widgets($widgets, $callback = 'art_print_block_widget'){
if (!is_array($widgets) || count($widgets) < 1) return false;
for($i = 0; $i < count($widgets); $i++){
$widget = $widgets[$i];
if ($widget['id']) {
if (function_exists($callback)) {
call_user_func($callback, $widget);
} else {
art_print_block_widget($widget);
}
} else {
echo $widget['content'];
}
}
return true;
}
function art_print_block_widget($widget){
echo art_get_block(
$widget['title'],
$widget['content'],
$widget['id'],
$widget['class']);
}
function art_print_footer_widget($widget){
echo '<ul id="'.$widget['id'].'" class="'.$widget['class'].' art-widget">';
if ($widget['title']){
echo '<li class="art-widget-title">'.$widget['title'].'</li>';
}
echo '<li class="art-widget-content">'.$widget['content'].'</li>';
echo '</ul>';
}
function art_dynamic_sidebar($name){
global $sidebars;
if ($name == 'footer') {
$footers = array();
$sum_count = 0;
foreach ($sidebars as $key => $sidebar)
{
if (strpos($key, 'footer') !== false){
$widgets = art_get_dynamic_sidebar_data($key);
if (is_array($widgets)){
$count = count($widgets);
if ($count > 0){
$sum_count += $count;
$footers[$key] = $widgets;
}
}
}
}
if ($sum_count == 0) {
return false;
}
echo '<div class="art-content-layout">';
echo ' <div class="art-content-layout-row">';
$footers_count = count($footers);
foreach ($footers as $footer)
{
echo '<div class="art-layout-cell art-layout-cell-size'.$footers_count.'">';
art_print_widgets($footer, 'art_print_footer_widget');
echo '<div class="cleared"> </div>';
echo '</div>';
}
echo ' </div>';
echo '</div>';
return true;
}
$widgets = art_get_dynamic_sidebar_data($name);
return art_print_widgets($widgets);
}
function art_get_sidebar($name){
ob_start();
if (!art_dynamic_sidebar($name)) {
$sidebar = art_option('sidebars.'.$name);
if ($sidebar) {
$blocks = explode(',', $sidebar);
for($i = 0; $i < count($blocks); $i++){
$block = $blocks[$i];
switch($block) {
case 'search':
echo art_get_block( __('Search', THEME_NS), art_get_search());
break;
case 'archive':
ob_start();
wp_get_archives('type=monthly&title_li=');// 2.6 not supported echo=0
echo art_get_block( __('Archives', THEME_NS), '<ul>'.ob_get_clean().'</ul>');
break;
case 'categories':
echo art_get_block( __('Categories', THEME_NS), '<ul>'.wp_list_categories('show_count=1&title_li=&echo=0').'</ul>');
break;
case 'blogroll':
echo art_get_block( __('Bookmarks', THEME_NS), '<ul>'.wp_list_bookmarks('title_li=&categorize=0&echo=0').'</ul>');
break;
case 'vmenu':
echo art_get_vmenu();
break;
}
}
}
}
return ob_get_clean();
}







