I like to have a whole website build in wordpress. All through the site there will be telephone number, address, some link here and there...

I like to be able to defin variable shorttag in the admin panel somewhere, and be able to insert it in the WYSIWYG like that :

you can contact us anytime [phone] or visit us here : [address]

so changing addres or number is a snap !

any idea, i got http://wordpress.org/extend/plugins/custom-configs/screenshots/ but need to insert in php not shorttag...

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You can use the do_shortcode() function to output the shortcode values using php. Assuming that

Example:

<? echo do_shortcode('[phone]'); ?>

Using your plugin is easy to define shortcodes that are outputting the content of a custom setting

function get_phone($atts, $content = null) {
 return get_config('phone-settings');
}
add_shortcode('phone', 'get_phone');

Assuming that in your plugins, you have defined a custom settings with the key phone-settings

link|improve this answer
creative solution... will look if it possible to implement easely... thanks a lot – menardmam Mar 3 '11 at 20:04
feedback

Your Answer

 
or
required, but never shown

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