WP Academic Publications
Let's you add academic publications to your Wordpress admin page which can then be displayed on your site.
Next Milestone 80
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
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| academic | 45 | — | Tag | 13 hours ago |
| publications | 45 | — | Tag | 13 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.2
- Last Updated
- Mar 21, 2014
- Requires WP
- 3.5+
- Tested Up To
- 3.7
- PHP Version
- N/A
- Author
- Brad Campbell
Support & Rating
- Rating
- ★ ★ ★ ☆ ☆ 3
- Reviews
- 2
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about WP Academic Publications
numbered: if true, publications will be displayed with an ordered list.
limit: total number of publications to display.
reverse: display in chronological order (default is reverse chronological).
show_links: if true, show links to the paper pdf and bibtex file.
page_num: useful for paging, tell wordpress to return the publications that would be on this page.
num_per_page: number of pubs to show on a 'page', needed for the paging functionality.
For example:
[academicpubs category=selected,science numbered=true limit=5 reverse=true show_links=false]
*
* $options: array('option' => 'value')
*
* Returns: [['id':1, 'title':'Paper Name', 'pdf_url':'http://a.com'],
* [another pub...]]
* fields are: id, title, authors, conference, pdf_url, bibtex_url,
* slides_ppt, website_url
*/
wpap_display_publications($options);
/* Returns html around each publication.
*/
wpap_display_publications_formatted($options);
For example:
<?php
$opts = array('category' => 'selected,science',
'reverse' => 'true',
'show_links' => 'false');
$pubs = wpap_display_publications($opts);
foreach ($pubs as $pub) {
echo '<p>' . $pub['title'] . '</p>';
}
?>
or
<?php
$opts = array('numbered' => 'true',
'limit' => 10);
echo wpap_display_publications_formatted($opts);
?>
Tom Smith and Eva Newn
Conference 1
paper | BibTex | slides (ppt) | website
Pub2 Title
Tom Cruise
COOKIE '13
paper | BibTex
What is a starter for some CSS styling?
.wpap .publication-title {
font-size: 110%;
font-weight: bold;
}
.wpap p {
margin: 0;
padding: 0;
}
.wpap ul {
list-style: none;
margin: 0;
}
.wpap li {
margin-bottom: 15px;
}
Support
Please go to https://github.com/bradjc/wordpress-academic-pubs if you have
any issues.