Closed. This question is off-topic. It is not currently accepting answers.admin管理员组文章数量:1289830
Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 3 years ago.
Improve this questionIn Wordpress, tags are applied to our posts. When I view a post, at the bottom are the associated tags. If I click one of the tags, I am taken to a view that shows all posts with that tag.
The view that is displayed shows each post's entire contents in long, narrow, unflattering columns and oversized fonts. I want to customize the layout of this.
We use the Undsgn Uncode theme, and I'm not sure if it is a part of the theme, or a common setting/feature somewhere in Wordpress. Sorry, I'm a Wordpress newb and do not know where to find options that control this particular view.
Closed. This question is off-topic. It is not currently accepting answers.Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 3 years ago.
Improve this questionIn Wordpress, tags are applied to our posts. When I view a post, at the bottom are the associated tags. If I click one of the tags, I am taken to a view that shows all posts with that tag.
The view that is displayed shows each post's entire contents in long, narrow, unflattering columns and oversized fonts. I want to customize the layout of this.
We use the Undsgn Uncode theme, and I'm not sure if it is a part of the theme, or a common setting/feature somewhere in Wordpress. Sorry, I'm a Wordpress newb and do not know where to find options that control this particular view.
Share Improve this question asked Jul 30, 2021 at 14:39 AppleoddityAppleoddity 1112 bronze badges 3 |1 Answer
Reset to default 1As mentioned in a comment, the functionality was found in archive.php which is part of the Uncode Theme we are using.
The view with posts filtered by tags is called a posts archive and Uncode provides options to change the layout of various "archives" in the theme options. It involved creating a new content block with the desired layout and then changing the theme options to use the new content block for the "Posts Archive."
本文标签: themesHow to change the layout of posts when viewing all posts by tag
版权声明:本文标题:themes - How to change the layout of posts when viewing all posts by tag 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741412917a2377343.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
tag-{slug}.php
,tag-{id}.php
,tag.php
, orarchive.php
. If none of those are present, it'll useindex.php
. Most likely, IMHO, it'll betag.php
orarchive.php
. – Pat J Commented Jul 30, 2021 at 15:42