最后,我做到了,在不失去WordPress环境访问权限的情况下:
add_action( \'edit_form_after_title\', \'custom_button\' );
function custom_button() {
$button = sprintf(\'<a href="%1$s" class="button button-primary button-large">%2$s</a>\', esc_url( add_query_arg( \'link\' , true, get_the_permalink() ) ), \'Custom Button\'
);
print_r($button);
}
Update: Hint: 请创建一个用于验证ssl url的函数,并将get\\u the\\u permalink()包装在其中。