How can I insert the current page title automatically into a TYPO3 template?

后端 未结 8 806
终归单人心
终归单人心 2021-02-05 17:08

actually the title is the whole question.

I just want to modify the template so that the current page title is automatically shown (i\'m working with html templates so I

8条回答
  •  有刺的猬
    2021-02-05 17:28

    It is. It's pretty simple to do. I'll assume you're using TemplaVoilà, because if you're not, you should be :-D

    Start off by putting some HTML in your template with a dummy page title. Give it an ID attribute so it's easy to map. Like:

    Page Title Here

    Next, go into TemplaVoilà and map that

    element to the content type "TypoScript Object Path". When it prompts you for the object path, you can put in anything you want -- convention is that dynamic content is added in the "lib" namespace, so let's call it lib.pagetitle. When it asks you if you want to map this to "INNER" or "OUTER", choose "INNER" -- that will mean you're just mapping the space BETWEEN the

    ...

    tags. ("OUTER" means you're replacing the whole element, including the tags, which we don't want here because we want this to stay an H1.) Save your template mapping.

    Now go into your site's TypoScript template. Here you're going to insert the logic that fills in that space we just mapped with actual content. To insert the page title is a matter of a couple of lines of TypoScript:

    lib.pagetitle = TEXT
    lib.pagetitle.data = page : title
    

    What this says is "take the space in the template that I mapped to lib.pagetitle. Create a content object in that space of type TEXT. Then fill that content object with the title of the page."

    Save your TypoScript template. Now you're done!

    This probably sounds complicated at first glance, and it is, but the nice thing about this system is that it's amazingly flexible. Inserting text dynamically is just the beginning. The TypoScript Reference (a.k.a. the "TSRef") has all the details -- look up "getText" to get a flavor, that's the function that makes the "page : title" call in your TypoScript template drop in the page title.

    TSRef is your friend. I keep a printed copy of it at my desk -- if you want to make TYPO3 sing, it is your songbook.

提交回复
热议问题