The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

> PHP Variable in Wordpress Shortcode, Variable won't transfer over to shortcode...
Dante Monaldo
post Feb 25 2012, 02:58 AM
Post #1


Advanced Member
****

Group: Members
Posts: 124
Joined: 22-March 09
From: California, USA
Member No.: 8,132



I wrote a simpe PHP script and have been trying to return the results in WordPress shortcodes, but I can't seem to get it to work. Here is what I have:

CODE
function securetotal() {
    return $secure_total;
}
add_shortcode('secure', 'securetotal');


$secure_total is the predefined variable that I need to be displayed. I can display simple text instead of the variable, but the variable is not transferring any results. Am I missing something? Any ideas?

BTW, I did post this on the Wordpress forum, but didn't get any replies, so I'm hoping someone here can shed light on it. Help is much appreciated.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
 
Reply to this topicStart new topic
Replies
Dante Monaldo
post Feb 25 2012, 12:08 PM
Post #2


Advanced Member
****

Group: Members
Posts: 124
Joined: 22-March 09
From: California, USA
Member No.: 8,132



Okay, the problem was that the variable was not global.

I just had to make $secure_total global and that fixed the problem. Thanks!

Here's the code just in case anyone else has the same problem.

CODE

function securetotal() {
       global $secure_total;
       return $secure_total;
}
add_shortcode('secure', 'securetotal');


This post has been edited by Dante Monaldo: Feb 25 2012, 12:08 PM
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Posts in this topic


Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 28th March 2024 - 08:29 AM