eljayesse
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Archives, Index, Ascending orderResolved! Funnily it is DESC order… bo! Thanks!
<?php query_posts(array(‘order’=>’DESC’,’orderby’=>’title’,’posts_per_page’=>’-1′,));
if (have_posts()) : while (have_posts()) : the_post(); ?>-
” title=”<?php the_title(); ?>”>
<?php the_title(); ?>
<?php endwhile; ?>
<?php endif; ?>Forum: Fixing WordPress
In reply to: Archives, Index, Ascending orderThanks, Samuel!
I’ve found this thread before and modified the code since it is all post titles I wanted to display sorted by date in ascending order:<?php wp_get_archives( $args ); ?>
<?php
$args = array(
‘type’ => ‘postbypost’,
‘orderby’ => ‘date’,
‘order’ => ‘ASC’
); ?>but I doesn’t do it…
Forum: Hacks
In reply to: Remove text links from Admin Panel – PostsI am trying to figure out the same thing… so did you find out by now?
Forum: Plugins
In reply to: remove items from manage posts subpanelIt is globally the filtering options in the posts posts subpanel like
– All, Published, Schedules, Pending Review, Draft, Private
– Show all dates/View all categories
that I want to remove or hide for users to see.
Any ideas?Forum: Installing WordPress
In reply to: ERROR: Incorrect password.There is no issue with my password. But with user’s auto-generated passwords when logging in under Safari. It produces the error notification of Incorrect Password.
Logging in under other browsers is seemless. Once the auto-generated password is modified, individualized the login with an individualized pw under Safari is possible. ????Forum: Installing WordPress
In reply to: ERROR: Incorrect password.Want to share how topic was resolved?
It would be highly appreciated!Forum: Plugins
In reply to: remove toggle box in admin panel header…figured it is called favorite actions list or menu…
-
” title=”<?php the_title(); ?>”>