Es geht um folgenden Programm Teil:
PHP
function author_bio_display($content) {
$biografie = 'Das ist meine Biografie';
return $content . $biografie;
}
add_action('the_content', 'author_bio_display');
Alles anzeigen
Funktioniert alles! Jedoch habe ich da ein Verständnis Problem.
$content ist ein Paramter von author_bio_display.
[size=14]Wie bekommt $content den Wert von the_content? [/SIZE]
Da wird doch nichts übergeben?