php Wordpress:联系表格7,添加表格标签(短代码)当前网址示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Wordpress:联系表格7,添加表格标签(短代码)当前网址示例相关的知识,希望对你有一定的参考价值。

<?php
/**
 * Wordpress: Contact form 7, Add form tag (shortcode) current url example
 */
add_action( 'wpcf7_init', 'wpcf7_add_form_tag_current_url' );
function wpcf7_add_form_tag_current_url() {
	// Add shortcode for the form [current_url]
	wpcf7_add_form_tag( 'current_url',
		'wpcf7_current_url_form_tag_handler',
		array(
			'name-attr' => true
		)
	);
}

// Parse the shortcode in the frontend
function wpcf7_current_url_form_tag_handler( $tag ) {
	global $wp;
	$url = home_url( $wp->request );
	return '<input type="hidden" name="'.$tag['name'].'" value="'.$url.'" />';
}

以上是关于php Wordpress:联系表格7,添加表格标签(短代码)当前网址示例的主要内容,如果未能解决你的问题,请参考以下文章

php WordPress - 联系表格7 - “尝试发送邮件时出错。请稍后再试。”

如何在联系表格 7 WP 中选中复选框

如何在wordpress中制作联系表格调用另一个php文件

Wordpress - 联系表格 7 - 卡住发送联系表格

Wordpress 中联系表格 7 的日期和时间

Wordpress 中的占位符图标联系表格 7