Hello, great plugin, does exactly what I need, but i noticed one issue:
In Sqhr_Link_Qr_Code and SQHR_QR_CODE_Settings_Setup you call get_post_types and pass an array:
$get_cpt_args = array(
‘public’ => true,
‘_builtin’ => true,
);
This causes only Posts and Pages to be returned.
Removing _builtin:
$get_cpt_args = array(
‘public’ => true,
// ‘_builtin’ => true,
);
Returns posts and pages and all custom post types.
]]>Hello, congratulations fornthe plugin.
01) After the post is created, is the qrcode generated automatically ?.
02) Is qrcode displayed in the post? is it possible to hide it?
03) It is possible to obtain the link of the qrcode corresponding to the current post. in the same way that you get a thumbnail or title of the current post?
* My interest is to display the qrcode link in the wordpress feed.
]]>