이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

JJ SwfObject

설명

Allows you to insert a swf file using a widget or a shortcode.

You can specify the following parameters:

NOTE: sc means shortcode:

  • Title: Title. Leave blank for no title. (sc: title=”My Title”)
  • Alternate Content. Content to display if can’t embed flash. (sc: alt=”Flash required”)
  • HTML id: HTML id to use. Defaults to ‘jj_swfobject’. Needs to be different for multiple instances on same page. (sc: html_id=”jj_swfobject”)
  • Path: Rath to swf. (sc: title=””)
  • Width: Width of swf. (sc: width=””)
  • Height: Height of swf. (sc: height=””)
  • Version: Flash version required. Defaults to ‘9.0.0’. (sc: version=””)
  • Flashvars: Fashvars for swf. eg, {name1:”hello”,name2:”world”,name3:”foobar”} (sc: flashvars=””)
  • Params: Params for swf. eg, {menu:”false”} (sc: params=””)
  • Attributes: Attributes for swf. eg, {id:”myDynamicContent”,name:”myDynamicContent”} (sc: attributes=””)

Check out swfobject documentation for more info. (http://code.google.com/p/swfobject/wiki/documentation)

Shortcode Examples:

  • [jj-swfobject path=”/mypath” html_id=”banner” width=”200″ height=”200″ version=”9.0.0″]

Try out my other plugins:

  • JJ NextGen JQuery Slider (https://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/)
  • JJ NextGen JQuery Carousel (https://wordpress.org/extend/plugins/jj-nextgen-jquery-carousel/)
  • JJ NextGen JQuery Cycle (https://wordpress.org/extend/plugins/jj-nextgen-jquery-cycle/)
  • JJ NextGen Unload (https://wordpress.org/extend/plugins/jj-nextgen-unload/)
  • JJ NextGen Image List (https://wordpress.org/extend/plugins/jj-nextgen-image-list/)

Contributors

스크린샷

  • Widget controls.

설치

Please refer to the description for requirements and how to use this plugin.

  1. Copy the entire directory from the downloaded zip file into the /wp-content/plugins/ folder.
  2. Activate the “JJ SwfObject” plugin in the Plugin Management page.
  3. Refer to the description to use the plugin as a widget and or a shortcode.

FAQ

Question:

  • How can I upload swf files using wordpress Media?

Answer:

  • Try adding code below to your functions.php file

    if ( ! function_exists( ‘add_my_mime_types’ ) ) :
    function add_my_mime_types($existing_mimes=array()) {
    $existing_mimes[‘swf’] = ‘application/x-shockwave-flash’;
    return $existing_mimes;
    }
    endif;
    add_filter(‘upload_mimes’, ‘add_my_mime_types’);

Question:

  • How can I use plugin inside normal PHP code?

Answer:

  • echo do_shortcode(‘[jj-swfobject path=”/mypath” html_id=”banner” width=”200″ height=”200″ version=”9.0.0″]’);

Question:

  • Doesn’t work after upgrade? or Doesn’t work with this theme?

Answer:

  • Please check that you don’t have two versions of jQuery loading, this is the problem most of the time. Sometimes a theme puts in
    tags at the end of newlines aswell.

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“JJ SwfObject”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “JJ SwfObject”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

  • 1.0.5: FAQ.
  • 1.0.4: Donate to Christchurch Quake.
  • 1.0.2: Readme.
  • 1.0.1: FAQ.
  • 1.0.0: First version.