Integrate wordpress blog into existing html site

If you have budget available, you may want to hire a developer to create a theme for you. If there’s no budget, browse through the WordPress.org theme repository to find a theme that looks similar to the rest of your website. Don’t worry too much about colors, think more about the overall layout – the … Read more

WordPress Recent Posts – Loop

Add this function in your functions.php for specific size of thumbnail add_image_size( ‘custom-size’, 220, 180 ); and fetch custom-size image. For excerpt length use this function. function wp_example_excerpt_length( $length ) { return 30; } add_filter( ‘excerpt_length’, ‘wp_example_excerpt_length’);

How to fix blog article view and share #’s?

The Newspaper theme uses ajax to display views and pull in social data. https://forum.tagdiv.com/ajax-view-count/ In order to keep requests to admin-ajax.php to a minimum, you should reduce the number of different blocks used on your site as well as reduce the ajax filters and pagination for each block. This will reduce server requests considerably. Please … Read more

Blogs got Deleted automatically

I assume you mean blog posts and not blogs which usually refers to all posts together. Anyways, it sounds like a database issue, not a WordPress issue. WordPress will not automatically delete posts. You either have some bad acting code on your site (like a plugin that’s doing far too much), or much more likely, … Read more