如何传递WP_Query
调用插件?我试图通过一个shortcode属性传递数据,但我得到了错误;WP\\U查询类的对象无法转换为字符串;。
E、 g.:
$args = array(
// ...
);
$the_query = WP_Query($args);
echo do_shortcode( [example_custom_plugin query_payload="\' . $the_query . \'"] );
插件检索WP模板设置的变量(可能是对象或数据数组)有哪些不同的方法(建议最好的方法)?在我的例子中,我的插件是通过shortcode调用实例化的,因此我从这个角度来处理它;我希望插件在实例化时具有WP\\u查询的结果。