multiple Tags
-
If a link to find all tagged articles within my blog looks like this: moopenheimer.wordpress.com/tag/mytag1/ – how would a link look like to find all articles, that contain not only ‘mytag1’ but ‘mytag2’ as well? Plus, what do I have to add to sort the found articles by date, resp. reverse date? Thanks, Moopenheimer.
The blog I need help with is: (visible only to logged in users)
-
If all of your posts have tags the URL for all tagged posts would be the same as your posts page, in this case: https://moopenheimer.wordpress.com/. There is no way that I know of to include multiple tags in a single URL. You could, however, use display posts shortcode to create a list of posts with various tags:
[display-posts tag="tag1, tag2"]If you want to include along with the title an excerpt and a thumbnail image you might use something like
[display-posts include_excerpt="true" image_size="thumbnail" wrapper="div" tag="tag1, tag2"]
- The topic ‘multiple Tags’ is closed to new replies.