我正在尝试回应我的Wordpress网站头标记之间Metabox textarea的价值,以便网站所有者可以插入页面单个脚本。
我已经成功创建了元数据集:
<?php
$post_id_post = isset($_POST['post_ID']) ? $_POST['post_ID'] : '' ;
$post_id = isset($_GET['post']) ? $_GET['post'] : $post_id_post ;
if ( ! function_exists( 'onm_head_add_meta' ) ){
function onm_head_add_meta(){
$types = array( 'post', 'page', 'courses', 'wiki', 'press' );
foreach( $types as $type ) {
add_meta_box('head-metabox-code', __('Scripts', 'onm_textdomain' ), 'onm_sitewide_meta_box', $type, 'normal', 'low');
}
}
}
add_action("admin_init", "onm_head_add_meta");
//Create area for extra fields
if ( ! function_exists( 'onm_sitewide_meta_box' ) ){
function onm_sitewide_meta_box( $post ){
$custom = get_post_custom();
$head_scripts = isset($custom["head_scripts"][0])?$custom["head_scripts"][0]:'';
// We'll use this nonce field later on when saving.
wp_nonce_field( 'my_meta_box_nonce', 'meta_box_nonce' );
?>
<textarea name="head_scripts" type="text" class="widefat" cols="50" rows="3"/><?php echo esc_attr($head_scripts); ?></textarea>
<p><?php _e('The code in the above textfield will be added between the <code><head></head></code> tags of the website.', 'onm_textdomain' ); ?></p>
<?php
}
}
if ( ! function_exists( 'onm_save_page_meta_box' ) ){
function onm_save_page_meta_box( $post_id ){
// Bail if we're doing an auto save
if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return;
}
// if our nonce isn't there, or we can't verify it, bail
if( !isset( $_POST['head_scripts'] ) || !wp_verify_nonce( $_POST['meta_box_nonce'], 'my_meta_box_nonce' ) ) {
return;
}
// if our current user can't edit this post, bail
if( !current_user_can( 'edit_pages' ) ) {
return;
}
// now we can actually save the data
if( isset( $_POST['head_scripts'] ) ) {
update_post_meta( $post_id, 'head_scripts', esc_attr( $_POST['head_scripts'] ) );
}
}
}
add_action( 'save_post', 'onm_save_page_meta_box' );
现在我尝试在头部标签之间输出Metabox中的值,如下所示:
if ( ! function_exists( 'onm_wp_head' ) ){
function onm_wp_head() {
$head_scripts_meta = get_post_meta( get_the_ID(), 'head_scripts' , TRUE );
if ( $head_scripts_meta != '' ) {
echo $head_scripts_meta, "\n";
}
}
}
add_action( 'wp_head', 'onm_wp_head' );
但是在我的网站上,这会在我打开身体标签后产生Metabox的输出(请看下面我的示例或this打印屏幕)。
<head></head>
<body>
"<script type="text/javascript">Test</script>"
我的头标记中不是一个很好的脚本。这很奇怪,因为当我按如下方式测试脚本时,它就像魅力一样:
if ( ! function_exists( 'onm_wp_head' ) ){
function onm_wp_head() {
$head_scripts_meta = '<script type="text/javascript">Test</script>';
if ( $head_scripts_meta != '' ) {
echo $head_scripts_meta, "\n";
}
}
}
add_action( 'wp_head', 'onm_wp_head' );
我认为这与textarea有关,不是吗?任何想法如何解决这个问题?谢谢你们!
答案 0 :(得分:0)
问题在于get_the_ID()
不会起作用(在调用the_post
之前无效)。
修改如下:
if ( ! function_exists( 'onm_wp_head' ) ){
function onm_wp_head() {
global $post;
$head_scripts_meta = get_post_meta( $post->ID, 'head_scripts' , TRUE );
if ( $head_scripts_meta != '' ) {
echo $head_scripts_meta, "\n";
}
}
}
add_action( 'wp_head', 'onm_wp_head' );
答案 1 :(得分:0)
一段时间后我找到了解决方案。我必须在标题输出之前使用stripslashes。所以我的功能变成了以下,然后它起作用了:
if ( ! function_exists( 'onm_script_wp_head' ) ){
function onm_script_wp_head() {
$head_scripts_meta = stripslashes(get_post_meta( get_the_ID(), 'head_scripts' , TRUE ));
if ( $head_scripts_meta != '' ) {
echo $head_scripts_meta, "\n";
}
}
}
add_action( 'wp_head', 'onm_script_wp_head' );
感谢您的帮助!