Where can I find the file where the_content() gets the value from post_content in the database?
I wanted to do the concept but with another content from the database, So far, I've added a new column to the database ex. post_content2 How can I get its value by using something like
<?php the_content2(); ?>
I tried looking at post-template.php and found the function but not how it gets the value from the database post_content.
the_content()gets the value from thepoststable in your database (from the column titledcontent).