I have a custom page template, and I want to use this in my page. I have created a new page and in template choose custom page template name. It's working, but I have added 4 blocks in my page, and this not working.
I want to use the custom page template with wordpress page text.
I want to use both custom page template and text blocks as well.
I have a custom page template, and I want to use this in my page. I have created a new page and in template choose custom page template name. It's working, but I have added 4 blocks in my page, and this not working.
I want to use the custom page template with wordpress page text.
I want to use both custom page template and text blocks as well.
1 Answer
Reset to default 1Your template should include the_content so that content from your editor is displayed in your page.
<?php the_content(); ?>
It would be better if you posted the php code of the page template you created, to find the exact issue.