我可以在wordpress的这个区域添加一个按钮吗?我要编辑的部分的图片如何在有文本和页面编辑屏幕的字段中添加带有 php 的按钮?我想在按钮内容中做这样的事情:<a href="http://example.com/get.php?url=<?php echo $geturl; ?>"> Click here </a>我想将相关帖子/页面的 URL 分配给 $ geturl 变量。example.com/get.php?url=http://example.com/example-post/我怎样才能做到这一点 ?谢谢
2 回答
LEATH
TA贡献1936条经验 获得超6个赞
你可以通过在Function.php文件下面添加下面的代码来修复它(我没想到这么简单。我没想到文本部分的url会用get_permalink();变量打印)
function custom_meta_box_markup()
{
echo get_permalink();
}
function add_custom_meta_box()
{
add_meta_box("demo-meta-box", "Custom Meta Box", "custom_meta_box_markup", "post", "side", "high", null);
}
add_action("add_meta_boxes", "add_custom_meta_box");
- 2 回答
- 0 关注
- 90 浏览
添加回答
举报
0/150
提交
取消