posts[i]. hasJumpLink

Whether the post has a <!--more--> jump-break in it.

Jump-breaks split the content of the post such that the content before the jump-break is eligible to be included in the post's snippet, but content after the jump-break is not.


posts[i]. hasJumpLink is a member of the Blog Posts dictionary.



hasJumpLink has data type boolean

Boolean data is simply true or false.
Note that any data reference can be coerced into a boolean, which will be true if the data exists.

Operators

The following operators apply to the boolean data type.
boolean1 and boolean2
(Also supported with the syntax &&)
Returns a boolean which is true if both of the given booleans are true.
boolean1 or boolean2
(Also supported with the syntax ||)
Returns a boolean which is true if either of the given booleans are true.