Yeah, I was actually looking for creating permalink based on user choice. Is
their any other way to do so ? Lets say I want thepermslink in a increasing
number format
Sent from my iPhone
On May 30, 2008, at 7:23 PM, Allen Gilliland <[EMAIL PROTECTED]> wrote:
You can't actually change the "anchor" value used to form an entry permalink.
Doing that would break the url, so it's not allowed.
If you don't care about breaking the url then you can create a new entry and
copy all the contents of the old one over, then publish the new one and delete
the old one. This will result in a new anchor and permalink. Note though that
you still don't get to manually choose the anchor used for the permalink, it's
generated based on the title of the entry when you first save the entry.
-- Allen
Abhay Srivastava wrote:
Hello folks,
I am curious to know on whether their is a way to change permalink ?
Sent from my iPhone
On May 3, 2008, at 10:55 PM, Dave <[EMAIL PROTECTED]> wrote:
On Tue, Apr 29, 2008 at 7:38 AM, Odelya YomTov-Glick <[EMAIL PROTECTED]> wrote:
I m using method
#set ($theEntries = $site.getMostCommentedWeblogEntries(null,8,3)).
Is there a way to get by the $entryStatCount.subjectNameShort
Which indicated the anchor, the entry itself - since I would like to get the
blog of the entry.
No. The built-in models do not support that becuase the StatCount
object. The subjectNameShort is the entry anchor, but the only way to
fetch an entry by anchor is in the $weblog object -- and that's the
object you are trying to get.
The solution here is probably to implement your own Model object to
return the data you want.
- Dave