尝试使用挂钩添加额外的字段

时间:2019-08-26 作者:Zabzuki

我正在尝试在的后端菜单上添加一个额外字段

编辑订阅菜单(相扑订阅(插件)->订阅列表->编辑订阅)

我给你发了一个截图,我想在哪里添加它。enter image description here

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;?>">
}
我知道这可能是一个简单的问题,但我还没有找到解决办法。提前感谢您的帮助!

1 个回复
最合适的回答,由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 )
  );
}

相关推荐

How do WP child-themes work?

好的,我已经设置了主主题,现在我创建了一个名为interio\\u child的子主题。从这些instructions 我知道您只需要添加样式。css文件,用于链接到主主题。此外,您还可以添加其他文件来覆盖主主题中的代码。现在我已经激活了我的孩子主题。它只显示“我的子主题”文件夹中的代码,而不显示CSS。这怎么可能?我看过很多教程和wordpress支持主题,但我无法将这个儿童主题链接到我的主主题。这些是我的孩子主题风格的内容。css:/* Theme Name: Interio Child&#x