Link to a custom page without a permalink?

First of all thank you to @jdm2112 for such a quick response. I was able to serve a custom page by creating a page from inside the WordPress admin panel to get a permalink wordpress.live/blogs. After that I setup my page.php to loop through all the posts using the following code <?php get_header();?> <?php $wpdb … Read more

WordPress Iframe for blog image

It depends a bit on your theme how to tackle this, because under most circumstances you cannot just change the featured image without writing a plugin. If you’re experienced with writing WordPress plugins (and Instagram’ API) you could write your own plugin that replaces the featured image. I would rather recommend using an existing plugin … Read more

Why is the_permalink not working?

In case this is the original sourcecode, there are two asterix pairs, which might break your code (getting interpreted as comments and therefore are not visible). Remove these and it should work. <?php // Start the loop if(have_posts() ) : ?> <?php while (have_posts()) : the_post(); ?> <?php $format = get_post_format(); ?> <article id=”post-<?php the_ID(); … Read more