I’m using a weblog to hold certain relatively static information for display on various pages (templates). For example, I have the “about” text as an entry in the “info” weblog (it happens to be entry ID 28). This works fine on the main site page and on the news weblog page, but elsewhere the exact same code displays nothing. In fact, I think that it works fine provided the template is the index template, but doesn’t work otherwise. Or, rather, it won’t work if the URL explicitly contains an entry URL title.
The “about” code looks like this:
{exp:weblog:entries weblog="info" entry_id="28"}
{body}
{/exp:weblog:entries}
I (naively?) thought that the specification of a specific entry ID would override any automatic processing due to the entry URL title. But is that wrong? If a URL contains the entry URL title, does that get passed into the weblog:entries processing, thereby causing the entry_id=28 to fail?
