Skip to content

Instantly share code, notes, and snippets.

View sumanahmed's full-sized avatar

Suman Ahmed sumanahmed

  • Future Plan IT Solution
  • Dhaka
View GitHub Profile
JS:
var s = $("#sticker");
var pos = s.position();
$(window).scroll(function(){
var windowpos = $(window).scrollTop();
if(windowpos >= pos.top){
s.addClass("stick");
}else{
s.removeClass("stick");
}
<?php the_author_meta('description'); ?></p>
user_login
user_pass
user_nicename
user_email
user_url
user_registered
user_activation_key
user_status
//html language set
<html <?php language_attributes(); ?> >
//meta charset
<meta charset="<?php bloginfo( 'charset' ); ?>">
//title set
<title><?php wp_title( '|', true, 'right' ); ?></title>
//before ending head
//Comments query
<?php comments_popup_link( 'No Comments', 'One Comments', '% Comments', '', 'Comment is disable' ); ?>
//comments template
<?php comments_template( '', true ); ?>
add_theme_support( 'post-thumbnails', array( 'post' ) );
add_image_size( 'post-image', 150, 150, true );
/**
* Required: set 'ot_theme_mode' filter to true.
*/
add_filter( 'ot_theme_mode', '__return_true' );
/**
* Required: include OptionTree.
*/
require( trailingslashit( get_template_directory() ) . 'option-tree/ot-loader.php' );
<form role="search" method="get" id="searchform" class="searchform" action="http://localhost/corlate/">
<div>
<label class="screen-reader-text" for="s">Search for:</label>
<input type="text" value="Feature shortcode" name="s" id="s">
<input type="submit" id="searchsubmit" value="Search">
</div>
</form>
<h2>
<?php printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() ); ?>
</h2>
<?php
if ( function_exists( 'ot_get_option' ) ) {
/* get the slider array */
$social_icons = ot_get_option( 'social_icon', array() );
if ( ! empty( $social_icons ) ) {
foreach( $social_icons as $social_icon ) {
echo '
<?php if ( function_exists( 'get_option_tree') ) : if( get_option_tree( 'your_tree_id') ) : ?>
<a href="<?php bloginfo('home'); ?>"><img src="<?php get_option_tree( 'your_tree_id', '', 'true' ); ?>" alt=""/></a>
<?php else : ?>
<a href="<?php bloginfo('home'); ?>"><img src="<?php echo get_template_directory_uri(); ?>/images/logo.jpg" alt=""/></a>
<?php endif; endif; ?>