我怎么才能把php代码放到wordPress页面上呢?

时间:2017-10-13 作者:srdjan_stojanovic

无论如何,是否有可能找到一个主页,我想在上面插入php代码,从cms我不知道这是否可能,我看了一些插件,但它们对我来说并不好。谢谢大家的帮助

1 个回复
最合适的回答,由SO网友:janh 整理而成

我认为使用the user_registration hook 可能最适合你想做的事情。

文档中的示例:

add_action( \'user_register\', \'myplugin_registration_save\', 10, 1 );

function myplugin_registration_save( $user_id ) {

    if ( isset( $_POST[\'first_name\'] ) )
        update_user_meta($user_id, \'first_name\', $_POST[\'first_name\']);

}
为了符合WordPress的方式(并且如果您更换服务器,就不太可能遇到麻烦),您可能应该使用WPHTTP API 将XML发送到其他URL。

结束