Thứ Sáu, 25 tháng 4, 2014

REgister wordpress

        if(function_exists('register_nav_menus')){
            register_nav_menus(
                array(
                    'main_nav' => 'Main Navigation Menu'
                    )
            );
            register_nav_menus(
                array(
                    'main_nav2' => 'Main Navigation Menu2'
                    )
            );      
        }
    /**
    * Creates a sidebar
    * @param string|array  Builds Sidebar based off of 'name' and 'id' values.
    */
    $args = array(
        'name'          => __( '1' ),
        'id'            => 'unique-sidebar-id',
        'description'   => '',
        'class'         => '',
        'before_widget' => '<li id="%1" class="widget %2">ffffffffffs',
        'after_widget'  => '</li>',
        'before_title'  => '<h2 class="widgettitle">',
        'after_title'   => '</h2>'
    );

    register_sidebar( $args );

    $args = array(
        'name'          => __( '2' ),
        'id'            => 's',
        'description'   => '',
        'class'         => '',
        'before_widget' => '<li id="%1" class="widget %2">ffffffffffs',
        'after_widget'  => '</li>',
        'before_title'  => '<h2 class="widgettitle">',
        'after_title'   => '</h2>'
    );

    register_sidebar( $args );


Call

dynamic_sidebar( 'sidebar-1' );
get_sidebar("1");

get_sidebar("2");

Thứ Năm, 24 tháng 4, 2014

Thứ Ba, 22 tháng 4, 2014

Cron - auto process php

Lấy thông tin script file name



Thiết lập cấu hình



Do


Thứ Hai, 14 tháng 4, 2014

Hai cái này mò cả 1 buổi ^^ Bây chừ đã xong và rất là vui !



///////////////////
$params = array('scope' => 'read_stream, friends_likes,email,user_birthday,read_stream,read_friendlists,publish_actions');
///////////////////
$response = $facebook->api(
                "/me/feed",
                "POST",
                array (
                    'message' => 'Không có gì quý hơn độc lập tự do - Tôi viết cái này trong app của facebook ^_^ '.rand(0,10000)
                )
            );
///////////////////