I have to get multiple values in the array function with this variable $fb_new_text. I have already declared this $fb_new_text. But the result so far I get is, i can get only one value of the variable and even if i use multiple values in the variable as commas separated ones, the first value of the variable only I am getting.
Let me know how to get multiple values.
Code: Select all
function header_widget1() {
global $fb_footer_text1,$fb_new_text;
if(!is_page(array($fb_new_text))){
?>
<div id="header_widget_2">
<ul class="sidebar_list">
<?php echo(stripslashes (get_option('fb_footer_text1')));?>
</ul>
</div>
<?php
}}