Link innerhalb vom PHP Code

  • Ich habe hier eine PHP Anweisung

    PHP
    <a href="<?php echo get_settings('home'); ?>/mediathek">
    <?php  
        $count_posts = wp_count_posts();  
        echo ('Alle Sportarten (' . $published_posts = $count_posts->publish) .')';  
    ?></a>


    Bisher wird die gesamte Ausgabe von "echo" ja als Link dargestellt. Ich möchte aber gerne, dass nur "Alle Sportarten" als Link dargestellt wird. Hab schon herum versucht, aber immer eine Fehlermeldung bekommen. Vielleicht kann mir ja jemand weiter helfen.

  • PHP
    <a href="<?php echo get_settings('home'); ?>/mediathek"> 
    <?php   
        $count_posts = wp_count_posts();   
        echo ('Alle Sportarten</a> (' . $published_posts = $count_posts->publish) .')';   
    ?>

    </span>

    Something big is coming. And there will be pirates and ninjas and unicorns...