vtxyzzy
Forum Replies Created
-
Forum: Plugins
In reply to: [PHP Code Widget] PHP4 style constructors will be deprecated in WP 4.3.Thanks. Now anyone searching the support forum can see that it has been resolved.
Forum: Fixing WordPress
In reply to: List of all authors with paginationNormally you would not get any results by replying to a ‘Resolved’ post. Better to start your own thread.
However, try this:
<?php $posts_per_page = 20; $paged = ( get_query_var('paged') ) ? get_query_var('paged') : (( get_query_var('page') ) ? get_query_var('page') : 1); $args = array( 'who' => 'subscribers', 'orderby' => 'user_registered', 'order' => 'DESC', 'exclude' => array( 1 ), 'number' => $posts_per_page, 'offset' => (($paged - 1) * $posts_per_page), ); $wp_user_query = new WP_User_Query($args); if ( ! empty( $wp_user_query->results ) ) { ?> <ul> <?php foreach ( $wp_user_query->results as $user ) { echo '<li class="abc"><a href="' . get_author_posts_url( $user->ID ) . '">' . $user->display_name . '</a> - <a href="' . get_author_posts_url( $user->ID ) . '">' . $user->user_email . '</a></li>'; } ?> </ul> <?php global $wp_rewrite; $pagination_args = array( 'base' => @add_query_arg('paged','%#%'), 'format' => '', 'total' => ceil($wp_user_query->get_total() / $posts_per_page), 'current' => $paged, 'show_all' => false, 'type' => 'plain', ); if( $wp_rewrite->using_permalinks() ) $pagination_args['base'] = user_trailingslashit( trailingslashit( remove_query_arg('s',get_pagenum_link(1) ) ) . 'page/%#%/', 'paged'); if( !empty($wp_query->query_vars['s']) ) $pagination_args['add_args'] = array('s'=>get_query_var('s')); $links = paginate_links($pagination_args); echo "<div class='navigation'>$links</div>"; } ?>
Forum: Plugins
In reply to: [WP-PostRatings] PHP4 style constructors will be deprecated in WP 4.3.Thanks. Now anyone searching the support forum can see that it has been resolved.
Sorry, I found the plugin listed here, which I found in a reply to this article.
Sorry for any inconvenience. But at lease now anyone searching the support forum can see that it has been resolved.
Thanks. Marking this issue Resolved so that anyone searching the support forum can see that it has been addressed.
Forum: Plugins
In reply to: [Download Monitor] PHP4 style constructors will be deprecated in WP 4.3.Thanks. Now anyone searching the support forum can see that it has been resolved.
Using GitHub is fine for many users, but not everyone will look there.
Forum: Plugins
In reply to: [Whistles] PHP4 style constructors will be deprecated in WP 4.3.Hi Justin,
I should have known that you had it under control, but was going through the list of plugins I use that are on the list and didn’t notice your name.
Sorry for any inconvenience.
Forum: Fixing WordPress
In reply to: Typoed somewhere on membeformlogicThe form action tells where to send the form data when the submit button is pressed. This can be the name of a php file which contains code to process the data.
Forum: Fixing WordPress
In reply to: Typoed somewhere on membeformlogicI think you need an ‘action’ for the submit to work.
Forum: Fixing WordPress
In reply to: How to put posts on sub pages?The WP Custom Menus will let you define a Category as a menu item. Here is a video tutorial on the Menu system. It is for an older version of WP, but still mostly accurate.
https://ericasays.com/2984/wordpress-3-custom-menu-tutorial/
The Simply Exclude plugin will let you exclude Categories from the front page.
Forum: Fixing WordPress
In reply to: How to REMOVE lines around images on site?If your theme provides a way to enter custom CSS, use that. Otherwise, you should create a Child theme or use a CSS plugin such as Simple Custom CSS to make your changes. If you do not, all of your changes will be lost if you update your theme.
The borders around your sidebar and widgets can be removed with the CSS below. You can test this by adding it to the end of your theme’s style.css, but to make it permanent, you should do as suggested above:
#secondary { border-left: none; } #secondary .widget-title { border-bottom: none; }
Forum: Fixing WordPress
In reply to: Trouble loginThe Emergency WordPress Access script might help.
Forum: Fixing WordPress
In reply to: Blurry Featured ImageThe images on the Home page and the individual page look exactly the same to me. I can’t see any difference when comparing them side-by-side using either Firefox, IE 11 or Chrome.
What browser are you using? What size screen?
Forum: Fixing WordPress
In reply to: sing query_posts in sql condition 0=1I suspect that $artistsCategory->term_id does not contain an integer. Use print_r to see its actual contents:
print_r('<pre>CAT:');print_r($artistsCategory->term_id);print_r('</pre>');
Forum: Fixing WordPress
In reply to: Blurry Featured ImageIt looks like you have solved your problem. If this is the case, you might help others by describing what you did and marking this topic ‘Resolved’.