L
by Divinenephron (Devon Buchanan)
5 (2 reviews)
Latex Everything
Produce PDF documents of everything on your site with Latex.
Tested up to WP 3.4 (Current: 6.9)
v1.3
Current Version v1.3
Updated 12 years ago
Last Update on 20 Sep, 2013
Synced 7 hours ago
Last Synced on
Rank
#32,160
-68 this week
Active Installs
10+
—
No change
KW Avg Position
25
—
No change
Downloads
8.3K
—
Total downloads
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(2 reviews)
Next Milestone 20
10+
20+
5,710
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
Need 3 more installs to reach 20+
Rank Changes
Current
#32,160
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
2 reviews
Overall
100%
5
2
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| latex | 25 | — | Tag | 8 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.3
- Last Updated
- Sep 20, 2013
- Requires WP
- 3.0+
- Tested Up To
- 3.4
- PHP Version
- N/A
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 2
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,738
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
Skyboot Custom Icons for Elementor
200K+ installs
#254
Performance Lab
200K+ installs
#267
Photo Gallery by 10Web – Mobile-Friendly Image Gallery
200K+ installs
#268
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.