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 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?