我可以在 wordpress 的这个区域添加一个按钮吗?

我可以在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/

我怎样才能做到这一点 ?谢谢


开满天机
浏览 91回答 2
2回答

LEATH

你可以通过在Function.php文件下面添加下面的代码来修复它(我没想到这么简单。我没想到文本部分的url会用get_permalink();变量打印)function custom_meta_box_markup(){echo get_permalink();}function add_custom_meta_box(){&nbsp; &nbsp; 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");

DIEA

您需要创建一个自定义元数据框以将控件放置在帖子或页面上。不能帮助其余的,但这应该让你开始。
打开App,查看更多内容
随时随地看视频慕课网APP