The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
588 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
73 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
31 views

Remove limit in characters of blog posts?

Im changing my blog, so its not possible to click on the post, but only see them in the preview. How and where do i remove the limit of characters on the preview page? I'm using the Mystile ...
0
votes
1answer
40 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
172 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
42 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' ...