I’m not sure if I’m doing this in the best way. What I want is my sticky entries to show ascending so that each time I add a new sticky entry it flows to the end of the sticky entries block. Non sticky entries below this should flow in normal order, new entries showing at the top of non sticky entries. The only way I could think of doing this was to include a double channel entry block as shown below. I notice that the pagination contained in the second channel block controls the entry number for both blocks. Is this as expected or is there a better way to achieve my end. Thanks for advice on this front.
{exp:channel:entries channel="listings" sort="asc"}
{if sticky=="y"}
show sticky entries asc
{/if}
{/exp:channel:entries}
{exp:channel:entries channel="listings" paginate="bottom" limit="7" sort="desc"}
{if sticky !="y"}
show non sticky entries in desc
{/if}
{paginate}
{pagination_links}
{/paginate}
{/exp:channel:entries}