我知道这是一个老生常谈的问题,但我想我还是要考虑一下。
我想我会通过一个get请求来完成它。
Below-written code has not been tested.
所以在你的category.php
-文件,然后添加访问者来自的类别的id,例如:
$category = get_the_category();
$link_to_the_post = \'<a href="\' . the_permalink() . \'?cat_id=\' . $category[\'ID\'] . \'">Link to post</a>\';
然后在
single.php
, 因此:
if( !empty( $_GET[\'cat_id\'] ){
$category = get_the_category( $_GET[\'cat_id\'] );
echo \'Category: \' . $category[\'name\'];
} else {
// Fallback, showing all categories (in case the visitor came from some other place)
the_category();
}