0

我有这个代码用于从前端网站创建自定义编辑链接:

<?php
function my_edit_post_link($url,$post->ID,$context) 
{
$url="ddd";
return $url;
}
add_filter( 'get_edit_post_link', 'my_edit_post_link');
?>

但是给出问题,正是这个:

Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ')' 

我不知道这个功能有什么不好,如果你知道请告诉我一些事情

谢谢

4

1 回答 1

2

你可以试试这个

function my_edit_post_link( $url, $post_id, $context )
{

    //...
    return $url;
}
add_filter( 'get_edit_post_link', 'my_edit_post_link', 10, 3 );
于 2013-06-11T01:45:24.210 回答