开发者 |
jpelker
gkrzyminski iworks |
---|---|
更新时间 | 2015年10月16日 11:40 |
PHP版本: | 3.3 及以上 |
WordPress版本: | 4.3 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
First of all, check your template. Rof proper work plugin requires function wp_head
and wp_footer
. If your template dont use one of theme, upPrev will not work. If you cant check this action in your templates manualy use this code to check it: https://gist.github.com/378450
upPrev plugin will work on websites in the following languages:
Use the iworks_upprev_image
action:
`
<?php
add_action( 'iworks_upprev_image' , 'default_image' );
function default_image()
{
return '';
}
`
Use the iworks_upprev_get_the_post_thumbnail
filter:
<?php
add_filter( 'iworks_upprev_get_the_post_thumbnail' , 'change_thumbnail' );
function change_thumbnail( $image )
{
return '<img src="image.png" alt="" />';
}
Yes. Just select post types on Appearance -> upPrev -> Content
page in Select post types
section.
See here: How I can customize with my own styles?
Visit: upPrev: snippet archive
Add Czech translation.
Fixed using YARPP 4.x. Check upPrev compatybility with WordPress 3.5.
Add Bulgarian translation.
Add Spanish translation.
Add Russian translation.
Critical update to prevent site crash!
Add Brazilian Portuguese translation.
Add GA tracking for display and click. Add filter and action to modify result.
Add YARPP integration.
Add support to custom post type.
Add some apperance, cache improvments. Scripts and styles optimization. New order available: random.
Add a polish translation. Fix cache refresh missing after change plugin configuration.
More configuration options. Uses transient cache to store results. Optimization activation & deactivation process.