Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1100717

    Ich hatte ja hier schon nach dem Seitentitel gefragt: https://kriesi.at/support/topic/wordpress-seitenname-im-filter-anzeigen/

    Jetzt würde ich doch auch noch sehr gerne den Untertitel mit einem Shortcut ausgeben, habe aber keine Ahnung, ob & wie das geht?

    Gruss Torsten

    #1100881

    Hallo Torsten,

    You can reuse the code I sent you, it’s the same for the exception of what you are fetching:

    $name = get_bloginfo('description');

    Read more here: https://developer.wordpress.org/reference/functions/get_bloginfo/

    Just make sure to rename your new function to have a unique name.

    LG,
    Rikard

    #1100951

    Super vielen dank, ich habe es so gemacht:

     //WP Sitedescription anzeigen mittels Shortcode [get_site_description]
     function torsten_get_site_description() {
       $name = get_bloginfo('description');
       return $name;
     }
    
     add_shortcode( 'get_site_description', 'torsten_get_site_description' );

    Und es funktioniert, Danke :-)

    Bis bald Torsten

    #1101247

    Hallo Torsten,

    Great, I’m glad that you got it working :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    LG,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.