Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can't get options with $data['variable'].

(I'm using SMOF - Slightly Modded Options Framework)

For example in the header.php (index.php, footer.php, etc.):

global $data;
$logo_type = stripslashes( $data['type_logo'] );

and nothing happens, variable $logo_type contains nothing.

But if I use the same code in the \css\styles.php - all works fine.

First encountered this problem... And can not understand what could be the problem (php, web hosting, etc.)

Anyone else encountered this problem?

share|improve this question
4  
turn on errors error_reporting(E_ALL); – Mathew Foscarini Jan 21 at 16:03
what is var_dump($data); saying? – macino Jan 21 at 16:56
error_reporting if turning on. var_dump($data); return NULL – user771417 Jan 22 at 0:39

migrated from programmers.stackexchange.com Jan 21 at 16:13

1 Answer

You mention that this is not working in the header.php file. This could be caused by the variable $data not being declared before the header.php file is invoked.

Have you checked that $data has been defined prior to trying to access data from that variable?

share|improve this answer
It defined. For example, in the file functions.php I can get data from variable $data. But not from header.php, index.php, footer.php, etc. – user771417 Jan 22 at 19:52
From what I have been able to extract from the SMOF and WordPress documentation, $data is set by the function and the values are retrieved using get_option(<option>, <default>). The value of $data is not defined before then. – iWizardPro Jan 23 at 0:48
So, what can I do? – user771417 Jan 23 at 13:00
Call the function get_option to retrieve values from the options set by WordPress. – iWizardPro Jan 23 at 22:11
This function already calls in the framework file \admin\functions\functions.admin.php, also trying to call this function $data = get_option(OPTIONS); — no luck – user771417 Jan 23 at 22:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.