运行以下代码时不会生成错误或警告。
尝试在简码事件中创建 cookie 时,我在 wordpress 上遇到了问题。
在下面的代码中,test1 cookie 被创建得很好,但是 test2 cookie 没有被创建。
然而,“Code Ran”这个词确实会显示出来。
if ( ! function_exists('cookieset')) :
function cookieset( $atts, $content = null ) {
extract( shortcode_atts( array(
'name' => 'cookieloc',
'redirect' => '/',
'expires' => '365',
), $atts ) );
setcookie("test2", 1, time()+3600, "/", ".domainname.com", false, true);
return "Code Ran";
}
endif;
if ( ! function_exists('cookieloc_action') ) :
function cookieloc_action() {
echo add_shortcode('cookieloc', 'cookieset');
setcookie("test1", 1, time()+3600, "/", ".domainname.com", false, true);
}
endif;