Also, what’s tricky is that I’m trying to pull in the sidebar3 data within the div container that is generated by the if-else php statement so that the data is nicely enclosed in it with the other widgets. I’d rather not add separate css to get the sidebar3 data to align properly. I realize that the following code would work, but again this puts sidebar3 outside the div.
<?php
if(get_post_meta($post->ID, custom_sidebar_value, true) != NULL)
{include get_post_meta($post->ID, custom_sidebar_value, $single = true);}
else {include('sidebar.php');} ?>
<?php include('sidebar3.php'); ?>
Thanks.