自定义编辑链接wordpress

时间:2013-06-10 20:05:43

标签: php wordpress

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

<?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 ')' 

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

谢谢

1 个答案:

答案 0 :(得分:2)

你可以试试这个

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

    //...
    return $url;
}
add_filter( 'get_edit_post_link', 'my_edit_post_link', 10, 3 );