按钮链接将转到主页而不是正确的链接

时间:2016-06-12 21:45:36

标签: php url hyperlink

我有一个人们可以列出一些财产的网站。 现在所有的工作都有效,除非您检查自己的商家信息,否则会有一个按钮进入编辑页面,因此您可以更改商家信息。

现在按下这个按钮会进入主页(可能是因为找不到网址)。 按下按钮时的URL为:http://mywebsite.com/?listing_edit=xxxx其中xxxx是列表的ID。 它应该转到:http://mywebsite.com/submit-property?listing_edit=xxxx

我找到了一些代码,但我不知道如何改变它(如果我的话是正确的话)。

文件1:

if( isset( $_GET['listing_edit'] ) && is_numeric( $_GET['listing_edit'] ) ){
///////////////////////////////////////////////////////////////////////////////////////////
/////// If we have edit load current values
///////////////////////////////////////////////////////////////////////////////////////////
$edit_id                        =  intval ($_GET['listing_edit']);

$the_post= get_post( $edit_id); 
if( $current_user->ID != $the_post->post_author ) {
    exit('You don\'t have the rights to edit this');
}
$show_err                       =   '';
$action                         =   'edit';
$submit_title                   =   get_the_title($edit_id);
$submit_description             =   get_post_field('post_content', $edit_id);

文件2

<a  data-original-title="<?php _e('Edit property','wpestate');?>"   class="dashboad-tooltip" href="<?php  print $edit_link;?>"><i class="fa fa-pencil-square-o editprop"></i></a>

也许两者都应该改变,或者只改变一个。

任何帮助表示感谢。

0 个答案:

没有答案