The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
112 views

Stop users from logging in from multiple locations

We are running a membership site. However, we have a problem with users that subscribe to our content that are sharing there login information with other people, circumventing the need for those users ...
0
votes
2answers
475 views

Customizing get_the_excerpt() to specific length and “Read More” output.

I am costuming a template. There is a list grabbing the introduction from the first 1-2 paragraphs (all the articles from a category). If I set the excerpt to 295 words, sometimes the list grabs ...
1
vote
1answer
70 views

Is there a limit on the size of a WP page?

I have a plugin that generates a gallery of user photos. Currently, it works using img tags pointing to the user photo image. It attaches to the the_content filter. I'm experimenting with converting ...
0
votes
1answer
38 views

Category that can hold only specific number of post

I would like to know is there any way/Plugin to limit the the post number of a category? And whenever user publish new post in that category then the category release the old post automatically? Like ...
0
votes
1answer
145 views

Wordpress Defined Memory Limit

Running a dedicated managed server with 2 GIGS of RAM. How much memory can I define in wp-config.php Currently I have define('WP_MEMORY_LIMIT', '256M'); I have a suspected plugin that resizes ...
0
votes
0answers
36 views

posts_per_page is set to 1, returns 50 posts

I'm trying to get the latest post in a custom post type: $query = new WP_Query(array( 'post_type' => 'some_custom_post_type', 'posts_per_page' => 1, 'orderby' ...