Skip to content

Instantly share code, notes, and snippets.

@mo3aser
mo3aser / Fix-Chinese-Language-Excerpts-Issue.php
Last active October 29, 2015 09:01
Sahifa Theme - How To Fix Chinese Language Excerpts Issue
<?php
# 1- Edit framework/functions/theme-functions.php and find:
function tie_excerpt(){
add_filter( 'excerpt_length', 'tie_excerpt_global_length', 999 );
echo get_the_excerpt();
}
function tie_excerpt_home(){
@mo3aser
mo3aser / WordPress - Import Menu Item's custom fields.php
Last active January 14, 2016 17:06
How to modify the WordPress importer plugin to Import Menu Item's custom fields
<?php
# WordPress - Import Menu Item's custom fields
# By Fouad Badawy - TieLabs.com
#1- Edit wordpress-importer.php
#2 search for
$id = wp_update_nav_menu_item( $menu_id, 0, $args );
if ( $id && ! is_wp_error( $id ) )
$this->processed_menu_items[intval($item['post_id'])] = (int) $id;