我正在尝试在的后端菜单上添加一个额外字段
编辑订阅菜单(相扑订阅(插件)->订阅列表->编辑订阅)
我给你发了一个截图,我想在哪里添加它。
do_action( \'sumosubscriptions_admin_after_general_details\' , $post->ID );
// 10 is the priority, higher means executed first
// 1 is number of arguments the function can accept
add_action(\'sumosubscriptions_admin_after_general_details\', \'custom_domain\', 10, 1);
function custom_domain($post) {
// do something
<input type="text" name="Domain" value="<?php echo $name;?>">
}
我知道这可能是一个简单的问题,但我还没有找到解决办法。提前感谢您的帮助!
最合适的回答,由SO网友:Antti Koskinen 整理而成
我不熟悉您使用的订阅插件。但是,当您将自定义函数附加到动作挂钩时,您很可能应该回显或打印希望在该特定点显示的html。像这样,
function custom_domain( $post_id ) {
// if this is saved as post_meta then get it with get_post_meta( $post_id, \'some_meta_key\', true );
$domain = \'someurl.com\';
printf(
\'<input type="text" name="Domain" value="%s">\',
esc_url( $domain )
);
}