dongmao4486 2016-01-11 21:20
浏览 116
已采纳

在Wordpress页面中读取POST数据

I am trying to write a plugin for wordpress. I have a problem i can't solve.

Inside plugin i habe added a shortcode that show a form.

function showForm() {
    echo '<form method="post" action="www.example.com/myDestinationPage">';
    [...]
}

add_shortcode( 'ShowFormSC' , 'showForm' );

After that, in a page, i added the shortcode and it works perfectly. ;-)

Now the problem: how can i read POST data in myDestinationPage (another wordpress page)?

In Php would be very simple ... but in wordpress I do not know how to do.

Second problem: myDestinationPage must be a real wordpress page with another shortcode inside, or can be defined as a "virtual" page inside my plugin?

Thank you for your help!

Best Regards, Simone

  • 写回答

2条回答 默认 最新

  • doutingyou2198 2016-01-11 21:37
    关注

    www.example.com/myDestinationPage needs to be edited to recieve the post data, just as in any other php script, wordpress or not. If 'myDestinationPage' resolves to dynamic wordpress content, then you are in muddy waters.

    Let's say, myDestinationPage is a wordpress Post. That "page" doesn't exist as a file, it comes directly from the database.

    You could write a shortcode which handles this though:

    add_shortcode('post_parser', 'postParser');
    . . .
    function postParser() {
      filter_input(INPUT_POST, 'my_post_value');
      //do something
    }
    

    Then, you just add the '[post_parser]' shortcode to the myDestinatioPage Post. (You mentioned it's a wordpress page, but page & post are both WP_Post objects.)

    Another option is to put your post processing code in the post.php (or whichever template myDestinationPage is).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 52810 尾椎c三个a 写蓝牙地址
  • ¥15 elmos524.33 eeprom的读写问题
  • ¥15 使用Java milo连接Kepserver服务端报错?
  • ¥15 用ADS设计一款的射频功率放大器
  • ¥15 怎么求交点连线的理论解?
  • ¥20 软件开发方法学习来了
  • ¥15 微信小程序商城如何实现多商户收款 平台分润抽成
  • ¥15 HC32L176调试了一个通过TIMER5+DMA驱动WS2812B
  • ¥15 cocos的js代码调用wx.createUseInfoButton问题!
  • ¥15 关于自相关函数法和周期图法实现对随机信号的功率谱估计的matlab程序运行的问题,请各位专家解答!