I'm learning PHP to change the company's website, hosted on the server and already online. I have all the accesses, however I am only accustomed with HTML and CSS, and in the researches and beginner tutorials that I studied, they teach the normal programming syntax (variables, loops, etc), but I did not find anything that explained to me where the texts come from and content of the site in PHP. Here is a PHP code that returns the text:
We have a cd equipped with the best equipment of (...) stock and organization.
And the code for this seems to be this:
<div id="content">
<?php wp_reset_query(); ?>
<?php
query_posts(
array(
'post_type' => 'logisticadinamica',
'orderby' => 'ID',
'posts_per_page' => 1
)
);
if (have_posts()) {
while (have_posts()) {
the_post();
?>
<?php the_content(); ?>
<?php
}
}
?>
I'm not asking you to teach me PHP because it would be absurd , I just want to know where the generated text is.