blank page with non-ascii category or tag
-
Currently this theme has a breadcrumb bug from its upstream breadcrumb library. When a category or tag page with non-ascii title is accessed, the whole page would be blank. For example,
https://test.lan/archives/category/???????
.
A temporary workaround is to not use the breadcrumb at all. Edit the fileinc/template-tags.php
and modify the code like this:/** * Masonry Grid Breadcrumb */ function masonry_grid_breadcrumb($comment = null){ // breadcrumb has a bug dealing with non-ascii categories return; echo '<div class="entry-breadcrumb">'; breadcrumb_trail(); echo '</div>'; }
- The topic ‘blank page with non-ascii category or tag’ is closed to new replies.