Plugin Author
Tajam
(@tajam)
Hi, you can add this code in your theme/child theme to change excerpt to full content:
function flex_posts_excerpt( $length ) {
the_content();
}
Hey.
The problem is, if there is a theme update, the code is gone again.
Plugin Author
Tajam
(@tajam)
Then you should create a child theme and put the code there instead of in the original theme.
@ blackthunderwolf,
You can use Code Snippets Plugin (https://ww.wp.xz.cn/plugins/code-snippets/)
This allows you to add PHP snippets without editing your theme and without needing to create a child theme. These remain even when you update your theme.