我想在小部件选项中保存一些参数,然后将其传递到另一个页面。小部件是一种称为Web服务的表单。
我要传递的选项是当前已硬编码到结果页面(作为模板)中的Web服务的身份验证。因此,它们应该对网站用户隐藏。
来自小部件/插件的代码:
function widget($args, $instance){
extract($args);
$title = apply_filters('widget_title', empty($instance['title']) ? 'Choose a service' : $instance['title']);
$lineOne = empty($instance['username']) ? '' : $instance['username'];
$lineTwo = empty($instance['password']) ? '' : $instance['password'];
# Before the widget
echo $before_widget; // etc...
结果页...
$url = "http://www.nhs.uk/NHSCWS/Services/ServicesSearch.aspx?user=".[USERNAME]."&pwd=".[PASSWORD]."&q=".$_POST['PostCode']."&type=".$_POST['ServiceType']."";
仍在学习WP如何挂在一起,因此对n00b问题感到抱歉。