📜  在 wordpress 中设置查询变量 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:47.737000             🧑  作者: Mango

代码示例1
// When calling a template with get_template_part()

set_query_var('my_form_id', 23);
get_template_part('my-form-template');

// Inside my-form-template.php
$my_form_id = get_query_var('my_form_id');