我正在制作我的WordPress主题,我想做的是使用前端编辑手段编辑页面
我必须使用这行代码在我的帖子/页面上创建一个按钮我自己的自定义按钮命名前编辑器
add_action('media_buttons', 'add_my_custom_button');
function add_my_custom_button(){
$post = get_the_id();
echo '<a href="'.get_the_permalink().'" class="button button-primary">Front Editor</a>';
}
现在我想做什么