如果您想访问自定义帖子类型(甚至是常规帖子)的“单一”页面,可以通过转到http://example.com?p=[post_id]&post_type=[post_type_name]
. 如果您使用Pretty permalinks,WordPress会将您重定向到“canonical”链接,如下所示http://example.com/my-post-type/my-post-name/
.
所以通过改变target
您的表单和post_id
隐藏输入到p
它应该工作:
<form class=\'product_form\' action="checkout" method="get" target="<?php home_url(); ?>">
<input name="p" type="hidden" value="<?=$post->ID?>"/>
<input type=\'image\' src=\'<?php bloginfo(\'template_url\'); ?>/images/buy.png\' class=\'wpsc_buy_button\' />
</form>