Edit Posts Page but not category specific pages?

You can create a Page template in which display all posts with your custom markup. <?php /** * Template Name: My Custom Blog * */ // The Query $args = array(‘posts_per_page’=>-1); $the_query = new WP_Query( $args ); // The Loop if ( $the_query->have_posts() ) { echo ‘<ul>’; while ( $the_query->have_posts() ) { $the_query->the_post(); echo ‘<li>’ … Read more

Adding a trinket.io widget to a post

Trinket.io founder here. We embed trinkets in our WordPress blog (blog.trinket.io) all the time, which is hosted by WPEngine (wpengine.com). One solution is to use a hosting provider like WPEngine that works out of the box. I have to imagine that many of the excellent independent hosing providers out there support iframe embeds out of … Read more

How to create library of HTML snippets to use in posts

You can use jquery to achieve this. like a button on click of it, you can append in the article textbox or input. like $(‘#boldbutton’).on(‘click’,function(){ $(‘#textid’).append(‘<b></b>’); }); Like above you can create as many as button you like to have.

Can I create mini-WordPresses on my WordPress?

as many people said here, multisite is one option for you. But… I am not recommending it. The problem here is that multisite is huge hardly managable, have problems with users management and security features. I have lots of problems with multisites. 1) You can have more wordpress sites in one hosting. Simply make folder … Read more

Featured image doesn’t appear in Blog index

Managed to find an alternative function that correctly calls the featured image set for the Blog index page by using this: <?php get_header(); ?> <?php if ( is_home() && get_option(‘page_for_posts’) ) { echo get_the_post_thumbnail_url( get_option(‘page_for_posts’) ); } ?> Thanks to those for your help

Pagination not working on blog grid

If you want to show pagination in home page then it require one change like in following line of your code $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; You need to replace your query variable like paged (get_query_var(‘paged’)) with page because in other pages we use paged but in home page for pagination we have … Read more

RSS Feed Shows NULL When Asking For Thumbnail

I don’t remember WP feeds to have any care for thumbnails feature. There is some handling for enclosure meta (seems dusty, don’t even remember what that is), but from quick test it seems to ignore thumbnails. Why do you expect exactly for thumbnails to just appear in feed? Unless I am missing something, it seems … Read more