alex1nd
Forum Replies Created
-
Forum: Reviews
In reply to: [Rus-To-Lat] Старыйнужно сменить восьмерку на ‘edit_pages’ – не будет
function rtl_add_menu() { add_options_page('RusToLat', 'RusToLat', 'edit_pages', __FILE__, 'rtl_options_page'); }Forum: Plugins
In reply to: [Varnish/Nginx Proxy Caching] 3-0 varnish agehow to make a maximum TTL
Forum: Hacks
In reply to: paginate_links in category.php NOT WORKThis problem Permalink
Forum: Hacks
In reply to: paginate_links in category.php NOT WORKit only helps
functions
function remove_page_from_query_string($query_string)
{
if ($query_string[‘name’] == ‘page’ && isset($query_string[‘page’])) {
unset($query_string[‘name’]);
list($delim, $page_index) = split(‘/’, $query_string[‘page’]);
$query_string[‘paged’] = $page_index;
}
return $query_string;
}
add_filter(‘request’, ‘remove_page_from_query_string’);
function fix_category_pagination($qs){
if(isset($qs[‘category_name’]) && isset($qs[‘paged’])){
$qs[‘post_type’] = get_post_types($args = array(
‘public’ => true,
‘_builtin’ => false
));
array_push($qs[‘post_type’],’post’);
}
return $qs;
}
add_filter(‘request’, ‘fix_category_pagination’);Forum: Reviews
In reply to: [WP Lightbox 2] addIf disable this plugin is – 25 requests to db
Forum: Reviews
In reply to: [a3 Lazy Load] off imageNow only the video, I was needed
Forum: Reviews
In reply to: [a3 Lazy Load] off imagedisable pictures did not work ,Okay, I found that it needs to delete in the lazy-load-xt.php
Forum: Themes and Templates
In reply to: [Felynx Forest] notworksalready made — that’s helped me a lot
Changed content.php and index.php, line 12 & 39 to:
if ( has_post_thumbnail() ) {
$parts = ‘ style=”background-image: url(‘ . wp_get_attachment_image_src( get_post_thumbnail_id(), ‘large’ ) . ‘)”‘;
$cover_img = $parts[0];
}https://ww.wp.xz.cn/support/topic/php-parse-error-10?replies=6