L
by divinenephron 5 (2 reviews)

Latex Everything

Produce PDF documents of everything on your site with Latex.

Latex Everything ranks #33,122 among WordPress.org plugins with 10+ active installations, is #2,933 of 6,372 in the Media category, a 5/5 rating from 2 reviews, and was last updated Sep 20, 2013. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 3.4 (Current: 7.1.2)
v1.3 Current Version v1.3
Updated 13 years ago Last Update on 20 Sep, 2013
Refreshed 6 hours ago Last Refreshed on
#2,933 of 6,372 in Media Top 50% by installs No update in over a year
View on WordPress.org
Rank
#33,122
-113 this week
Active Installs
10+
-28.6%
KW Avg Position
57
3 worse
Downloads
8.4K
+2 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (2 reviews)

Next Milestone 20

Total Progress 40%
10+ 20+
19,860
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 6 more installs to reach 20+

Rank Changes

32,350 32,779 33,208 33,637 34,066 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
30,458 34,986 39,514 44,042 48,570 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #33,122
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
2 reviews
Overall 100%
5
2 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about Latex Everything

If something isn't working, check this FAQ for a relevant answer. If there isn't one, create a new topic in the plugin forum and the author will try to get back to you.
Go to Settings->Reading. There is a "Latex Everything" section where you can choose which documents Latex Everything creates. By default only "Single Posts" option is selected, but you can typeset other post types (including custom ones),
There are in fact three broad types of document Latex Everything produces: single_post -- Each document contains a single post (this can be a page or a custom post type). post_type -- Each document contains every post of a particular type (e.g. a post, a page, or a custom post type). term -- Each post contains every post belonging to a specific term (e.g. a category, tag, or term in a custom taxonomy). You need to know what sort of document you're looking for when getting its url.
PDF files that contain a post are updated when it is saved. PDF files are also generated in bulk after the plugin is activated (this uses WP-Cron, so it takes a while). If you have a large number of posts and want to generate PDF files for all of them, deactivate and reactivate the plugin, then wait.
Functions have been provided to link to the generated PDFs. the_latex_url( $type, $arg1, [$arg2]) -- Prints a direct link to the PDF. get_latex_url( $type, $arg1, [$arg2]) -- Returns a direct link to the PDF. the_latex_permalink( $type, $arg1, [$arg2]) -- Prints a link to the attachment page. get_latex_permalink( $type, $arg1, [$arg2]) -- Returns a link to the attachment page. get_latex_attachment_id( $type, $arg1, [$arg]) -- Returns the id of the attachment. The arguments you give depend on the type of PDF document you're requesting: For a single_post PDF: the_latex_url( 'single_post', (int) $post_id ) For a post_type PDF: the_latex_url( 'post_type', (string) $post_type ) For a term PDF: the_latex_url( 'term', (int) $term_id, (string) $taxonomy) Here's how you would use them in The Loop. <a href="<?php the_latex_url( 'single_post', get_the_ID() ) ?>">PDF of this post</a> <a href="<?php the_latex_url( 'post_type', get_post_type() ) ?>">PDF of all posts</a> <?php foreach( get_the_category() as $category ) : ?> <a href="<?php the_latex_url( 'term', $category->cat_ID, 'category' ) ?>">PDF of a category</a> <?php endforeach; ?> NB: These don't automatically figure out which post you're on while in The Loop, you must always give all of the arguments If you are going to use these functions in a theme, check they exist and produce a url first: <?php if( function_exists('get_latex_url') && $latex_url = get_latex_url( 'single_post', get_the_ID() ) ): ?> <a href="<?php echo $latex_url ?>">PDF</a> <?php endif; // get_latex_permalink ?>
Latex Everything has a default template inside the plugin directory, but it only falls back on that if it doesn't find templates in the theme directory. The plugin searches for templates in the same way that Wordpress does. For a single_post PDF: latex-single-<post_type>-<post id>.php latex-single-<post_type>-<post slug>.php latex-single-<post_type>.php latex-single.php latex.php For a post_type PDF: latex-post-type-<post type name>.pdf latex-post-type.pdf latex.pdf For a term PDF: latex-term-<taxonomy>-<term id>.pdf latex-term-<taxonomy>-<term slug>.pdf latex-term-<taxonomy>.pdf latex-term.pdf latex.pdf Look at default-latex-template.php in the plugin directory for guidance as to
The plugin has been built with the intention of being extensible. The internals have documentation in comments, and if you want to know how to do something that
and the author will try to get back to you.

Sign In / Register

You need to sign in or register to use this feature.