CSS3 Ttransition Code
Css Code
-webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out;
View Post
he wasn't even looking at me and he found me

shark vs the universe
Cosimo Galluzzi
"I'm Dorothy Gale from Kansas"
YOU ARE THE REASON

Discoholic 🪩
official daine visual archive
Mike Driver
Claire Keane
KIROKAZE
ojovivo
No title available

Kiana Khansmith
Sade Olutola

pixel skylines
One Nice Bug Per Day
TVSTRANGERTHINGS

❣ Chile in a Photography ❣
cherry valley forever
The Bowery Presents

seen from Sri Lanka
seen from United Kingdom

seen from United States
seen from Venezuela

seen from Türkiye
seen from Brazil
seen from Brazil
seen from Colombia
seen from United States

seen from Russia

seen from United States
seen from Vietnam

seen from Thailand
seen from Syria
seen from Pakistan

seen from Brazil
seen from United States
seen from United Kingdom
seen from Spain
seen from United States
@getallcodes
CSS3 Ttransition Code
Css Code
-webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out;
View Post
PHP Code Function page Code if ( ! function_exists(… http://wp.me/s3AUfQ-284
PHP Code
<?php twentythirteen_post_nav(); ?>
Function page Code
if ( ! function_exists( ‘twentythirteen_post_nav’ ) ) : function twentythirteen_post_nav() { global $post;
$previous = ( is_attachment() ) ? get_post( $post->post_parent ) :…
View Post
Set page image from backend by frature image
PHP Code
<?php the_post_thumbnail(‘full’); ?>
View Post
WP change year code
PHP Code
<?php echo date(‘Y’); ?>
View Post
Change wordpress admin favicon
PHP Code put in fuction.php
sdf
View Post
Opacity css code
CSS Code
.classname { zoom: 1; filter: alpha(opacity=50); opacity: 0.5; -khtml-opacity: 0.5; /* Safari 1.x (pre WebKit!) */ -moz-opacity:0.5; /* Older than Firefox 0.9 */ -ms-filter:”progid:DXImageTransform.Microsoft.Alpha(Opacity=50)”; }
View Post
wp slider call code
PHP Code
<?php query_posts(array(‘post_type’ => ‘banner’, ‘order’ => ‘ASC’, ‘banner_category’ => ‘home-page’)); $i = 1; if (have_posts()) : while (have_posts()) : the_post(); ?> <div > <div> <?php the_post_thumbnail(‘full’); ?> </div> <div>
View Post
wp image call code in page
PHP Code
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/booknow-Icon1.jpg” alt=”">
1) <?php echo get_template_directory_uri(); ?>
2) <?php bloginfo(‘stylesheet_directory’); ?>
View Post
Set post by category id
PHP Code
<?php query_posts(‘cat=6′); ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<span class=”person-img”> <?php the_post_thumbnail(‘full’); ?></span>
<span class=”person-name”><?php the_title();?></span>
View Post
Set same post page link by permalink code
PHP Code
<?php the_permalink() ?>
View Post
wp-widget code of function page
wp-widget code of function page
if ( function_exists(‘register_sidebar’) ) { register_sidebar(array( ‘name’ => __( ‘Categories’, ‘KI’ ), ‘id’ => ”company-logo”, ‘description’ => __( ‘Categories’, ‘KI’ ), ‘before_title’ => ‘<h2>’, ‘after_title’ => ‘</h2>’,
View Post
Responsive navigation code for small phones
Html code
<select onChange=”location = this.options[this.selectedIndex].value;”> <option>Navigation</option> <option value=”#”>Home</option> <option value=”#”>Shop</option> <option value=”#”>About</option> <option value=”#”>Film</option> Contact
View Post
Css Navigation Code
Html code
<div class=’cssmenu’> <ul> <li><a href=’#'><span>Home</span></a></li> <li class=’active has-sub’><a href=’#'><span>Products</span></a> <ul> <li class=’has-sub’><a href=’#'><span>Product 1</span></a> <ul>
View Post
Set title of post
<?php echo get_the_title($postID);?>
View Post
Javascript onclick message alert
Java script code
<script> function Function() { alert(“Hello! How are You?”); } </script>
Html Code
<input type=”button” onclick=”Function()” value=”Click and view” />
View Post
How to set td alternate color ?
Java script code
<script type=”text/javascript”> function altRows(id){ if(document.getElementsByTagName){
var table = document.getElementById(id); var rows = table.getElementsByTagName(“tr”);
for(i = 0; i < rows.length; i++){ if(i % 2 == 0){ rows[i].classN…
View Post
Media screen css code
@media screen and (max-width: 1024px){ …. } @media screen and (max-width: 960px){ …. } @media screen and (max-width: 854px){ …. } @media screen and (max-width: 800px){ …. } @media screen and (max-width: 768px){ …. } @media screen and (max-width: 640px){ ….…
View Post