WordPress Theme celebrates it’s launch in style by offering you this WordPress Portfolio Theme absolutely FREE! FolioGrid comes in three beautifully crafted styles, Dark, Light and Yellow. Download the file here. Demo here
Şubat, 2010 için Arşiv
15 Şub
Different Theme Design for Different Categories WordPress 2.9
Example: slugname:politic categoryname:politicPut in your theme folder a new theme with the name your slug or id i prefer slug because its more acceptable in these casewp-content/themes/your-theme/category-politic.php
11 Şub
Dynamic Content Gallery Message #20: An error has occurred. Go back and try again.
Solution: Reset the plugin’s Settings to Default.
11 Şub
Moving WordPress Another Host Domain How to change Url adress Mysql Querys
UPDATE wp_posts SET post_content = REPLACE(post_content,‘oldwebsite.com’, ‘newwebsite.com’); UPDATE wp_posts SET guid = REPLACE(guid,‘oldwebsite.com’, ‘newwebsite.com’); UPDATE wp_postmeta SET meta_value = REPLACE(meta_value,‘oldwebsite.com‘, ‘newwebsite.com’); UPDATE wp_options SET option_value = REPLACE(option_value,‘oldwebsite.com’, ‘newwebsite.com’); UPDATE wp_links SET link_image = REPLACE(link_image,‘oldwebsite.com’, ‘newwebsite.com’); UPDATE wp_users SET user_email = REPLACE(user_email,‘oldwebsite.com’, ‘newwebsite.com’);
11 Şub
How to Mysql search and replace find Query Worpress Post
update [table_name] set [field_name] = replace([field_name],’[string_to_find]‘,’[string_to_replace]‘); if you are moving your website to another domain its very usefull to replace hard coded urls with one click example UPDATE wp_posts SET post_content = REPLACE(post_content, ‘oldwebsite.com’, ‘newwebsite.com’);
10 Şub
How to play flv file video on Facebook FBML
<fb:flv src=’http://www.mediacollege.com/video-gallery/testclips/barsandtone.flv’ width=’400′ height=’300′ title=’my movie’ color=’#FFBB00′ salign=’r’ img=’http://www.example.com/test.jpg’ scale=’showall’/> Required Name Type Description required src string The URL of the FLV file. The URL must be absolute. optional height int The height of the video container in pixels or percentage. width int The width of the video container in pixels or percentage. title string [...]
10 Şub
Open 2 two links with just one click Javascript Simple Solution Tiny Code
example <SCRIPT LANGUAGE=”JavaScript”> function birtasikikus(site1, site2) { window.open(site1); window.location = site2; } </script> </head> <body><a href=”javascript:birtasikikus(‘http://www.yoursite.com/’, ‘http://www.yoursite.com/’);”>Click Here</a> </body>

