Skip to content

Posts from the ‘Wordpress’ Category

Plugin WordPress.com Stats dilebur dalam WP JetPack

Siang ini ketika mengupdate plugin WordPress.com pada blog ini, saya mendapati pemberitahuan seusai proses update. Ke depannya, WordPress.com Stats akan dilebur dalam paket plugin WordPress.com JetPack. Apa sih WP Jetpack itu?

Ini fitur-fiturnya: Read more

Menampilkan Update Google+ Anda dg WordPress

Google+ sebagai social networking baru buatan Google sudah mulai merambah dan popular di Indonesia. Trik berikut akan menampilkan update Google+ anda ke sebuah halaman WordPress.

Berikut source code-nya: Read more

WordPress.com Adding New Two-way Confirmation

Two-step authentication is slowly becoming the norm, which can only be a good thing. Google was the first big web company to enable two-step authentication for its accounts and since then others have followed.

The latest is WordPress.com which is enabling two-step authentication for the blogs it hosts. Users can now enable this additional security feature to prevent unauthorized access to their blogs and sites.

“We know your blog is important to you, and today we’re proud to announce Two Step Authentication: an optional new feature to help you keep your WordPress.com account secure,” WordPress.com announced.

“For those of you who use Two Step Authentication with your Google account, you’ll know how useful this feature is for keeping your account secure,” it added. Read more

WordPress 3.6 Beta Is Released, New 2013 Themes & Locking Post Introduced

The first beta release of the upcoming WordPress 3.6 is here. It’s a bit later than some might have expected, but this release is a change of course for WordPress.

All the features have been mostly completed by now, the beta release is intended for testing and just for testing, there won’t be any major changes or additions between now and the final release, just bug fixes and improvements.

“We’ve been working for nearly three months and have completed all the features that are slated for this release,” WordPress lead developer Mark Jaquith wrote.

“I felt very strongly that we shouldn’t release a beta if we were still working on completing the main features. This beta is actually a beta, not an alpha that we’re calling a beta,” he explained. Read more

Incoming search terms:

Belajar WordPress: Menambah tag HTML di Editor

Secara default, editor tulisan di WordPress tak mengijinkan penggunaan tag-tag html yang tak sesuai dengan standar XHTML 1.0. Contohnya, iframe yang otomatis akan dieleminasi oleh engine WordPress. Bila anda benar-benar ingin menggunakan tag yang tidak kompatibel semacam itu, silakan tambahkan fungsi berikut di file function.php themes anda.

function fb_change_mce_options($initArray) {
	$ext = 'pre[id|name|class|style],iframe[align|longdesc| name|width|height|frameborder|scrolling|marginheight| marginwidth|src]';

	if ( isset( $initArray['extended_valid_elements'] ) ) {
		$initArray['extended_valid_elements'] .= ',' . $ext;
	} else {
		$initArray['extended_valid_elements'] = $ext;
	}

	return $initArray;
}
add_filter('tiny_mce_before_init', 'fb_change_mce_options');

Coba lihat di editor tulisan anda, tuliskan tag iframe misalnya. bisa khan?

Incoming search terms: