RSS

Category Archives: Wordpress

Jquery code with wordpress jetpack

1
2
3
4
5
6
7
8
<script type="text/javascript">
jQuery(document).ready(function($){
 
	$(".news-text").click(function(){
	  $(this).children(":first").toggle('slow');
	});
});
</script>

Aliasing the jQuery Namespace

When using another JavaScript library, we may wish to call $.noConflict() to avoid namespace difficulties. When this function is called, the $ shortcut is no longer available, forcing us to write jQuery each time we would normally write $. However, the handler passed to the .ready() method can take an argument, which is passed the global jQuery object. This means we can rename the object within the context of our .ready() handler without affecting other code:

1
2
3
jQuery(document).ready(function($) {
  // Code using $ as usual goes here.
});

Arama Terimleri:

 

Posted by on 26 Şubat 2013 in Bilgisayar, Programlama, Wordpress

Leave a comment

Toggle visibilty of first child of this by jQuery

1
$(this).children(":first").toggle('slow');
 

Posted by on 25 Şubat 2013 in Bilgisayar, Wordpress

Leave a comment

wordpress’te inceleme için gönder yazıyorsa

Hostinginizde de barındırdığınız wordpress blogunuzda (veya sitenizde) yazı oluştururken yayımla butonu yerine “inceleme için gönder” butonu çıkıyorsa veritabanında bir şeyler ters gitmiş demektir. İlk bakışta kullanıcı hakları ile alakalı görünse de aslında Read the rest of this entry »

Arama Terimleri:

 

Posted by on 01 Mayıs 2012 in Bilgisayar, Wordpress

3 Comments

Call to undefined function mb_strimwidth()

Yeni bir tema indirdiniz, kurdunuz.

PHP Fatal error:  Call to undefined function mb_strimwidth() in

Şeklinde bir hata alıyorsanız işiniz biraz zor olabilir. Eğer kendi sunucunuz var ise Apache’yi yeniden derleyerek

mbstring

modülünü yüklemelisiniz. Eğer bir paylaşımlı bir hosting üzerinde iseniz hosting sağlayıcınıza bunu iletebilirsiniz. Apache’yi (aslında PHP’yi) derlerken şuradan yardım alabilirsiniz. http://www.php.net/manual/en/mbstring.installation.php

Arama Terimleri:

 

Posted by on 01 Mayıs 2012 in Bilgisayar, Wordpress

2 Comments