
06-06-2009, 05:43 PM
|
|
|
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Saviour
I created an article, welcoming users to the new article section...and made it a sticky when I created it. Yet, on the articles.php page, it just moves down to the next article. I know I can sort these, manually, using the tools on the articles.php page, but I want it to appear as the first article on that page...and remain as the first article on that page.
Any suggestions?
|
Find in articles.php:
PHP Code:
ORDER BY $sqlsortfield $sqlsortorder
Replace with:
PHP Code:
ORDER BY sticky DESC, $sqlsortfield $sqlsortorder
|