Link to page with posts of specific type

First, never use query_posts, use WP_Query to create additional queries. When you register your post type, set has_archive to true, or a string which will be the URL slug for your post type archive. You can then use get_post_type_archive_link() to output the URL to your post type archive. <a href=”https://wordpress.stackexchange.com/questions/210453/<?php echo get_post_type_archive_link(“issues’ ); ?>”><li>View All</li></a>

Adding html banner to posts

rss_use_excerpt is the option people can use to change the blog from Full Text to Summary. With a combination of is_front_page and that setting you can determine if you’re blog page is showing the summary — in your case — when you don’t want to show the banner on the blog page. function display_banner($content) { … Read more

Wierd site output [closed]

This looks like a hack, probably in W3TC. Try disabling all the Plugins one by one, and if it doesn’t go away, try switching to the default theme. If that did not work, install WordPress from scratch, and transfer the database to it. If you prefer another debug mode, I suppose your script gets hooked … Read more

Https and Http for iFrame

Because your server is HTTPS, the only way you can accomplish this is rendering the content on your server or getting the 3rd party to upgrade their server content to HTTPS. It’s just the rule of the Internet. To fix the mixed content issue, pull all the JS and HTML you need into your own … Read more

Remove   in post content

As per comments on the original post, it appears this is as a result of copying text from another source. Unfortunately, copying and pasting can bring across whatever junk the source editor decides to include. MS Word has typically been terrible at this; WordPress now does a pretty good job at cleaning it up but … Read more