I am having trouble with article formatting when exporting/importing articles from the production to the development environments

Whenever I export a couple of articles from my production site to my development site, the imported one loses all its spacings (&nbsp elements). Has anyone ever encountered this? I use WordPress Importer; also tried different export/import plugins and they have the same effect. also have trouble with the featured image not being exported for … Read more

How to change the permalink structure of a master page?

Links on the page I use are progressing as follows: http://example.com/image/1 The code I use for Functions.php add_action( ‘init’, ‘wpse316713_pagination_base_rewrite_rule’ ); function wpse316713_pagination_base_rewrite_rule() { global $wp_rewrite; $wp_rewrite->pagination_base=”image”; } Reference link: How to change the link structure of the homepage? What I’m trying to do is remove the “image” base. How can we change it to … Read more

How to display on the blog page the posts corresponding to the selected language, using Polylang

I use Polylang (free) to internationalize a customer site. I set a default language (= FR), I added a language switcher in my navbar (FR and US flags) and I set the Front and Blog pages for both languages. 1) The language switcher works well with the pages. If you go to the homepage (http://cecile-chancerel-bijoux.com/wp/), … Read more

How to display only the excerpt in the blog/posts page with Gutenberg?

I’m building a custom child theme using the Twenty Nineteen default WordPress theme as the parent. I added some text in the excerpt section available in the Editor as follows: But the full content of each post is displayed on the blog/posts page instead of just the excerpt. What is the proper way of adding/using … Read more

How can I show the actual content of Posts page because the_content() is showing all blog content?

In Settings>Reading I have the following static page set Homepage: Welcome to blurr (front-page.php) Posts page: Blog Posts (home.php) I’m trying to get the_content of the Blog Posts to show the_title(): Blog Posts the_content(): Read our blurr articles But instead of showing Read our blurr articles it’s showing the content of the blog posts. Below … Read more