Post content not showing some content
If you do $content = “something”; you are replacing the $content variable’s value. If you want to append something to the current content, you’d need to do something like: $content=”initial content”; $content .= ‘more content (notice the dot)’; In this case, if you want to append the image to some existing content you’d need to … Read more