Example #1
0
/**
 * <head>
 *
 * @since 2.0.0
 * @deprecated 2.3.0
 */
function themeblvd_head()
{
    themeblvd_deprecated_function(__FUNCTION__, '2.3.0', null, __('Hook your custom head functionality to wp_head.', 'themeblvd'));
    do_action('themeblvd_head');
}
Example #2
0
/**
 * Display Recent Tweets
 *
 * @since 2.1.0
 *
 * @param string $count Number of tweets to display
 * @param string $username Twitter username to pull tweets from
 * @param string $time Display time of tweets, yes or no
 * @param string $exclude_replies Exclude replies, yes or no
 * @return string $filtered_tweet Final list of tweets
 */
function themeblvd_twitter($count, $username, $time = 'yes', $exclude_replies = 'yes')
{
    themeblvd_deprecated_function(__FUNCTION__, '2.3.0', null, __('Twitter functionality is no longer built into the Theme Blvd framework. Use Theme Blvd "Tweeple" plugin found in the WordPress plugin repository.', 'themeblvd'));
}
Example #3
0
 /**
  * Print out styles.
  *
  * @since 2.1.0
  * @deprecated 2.3.0
  *
  * @param int $level Level to apply stylesheet - 1, 2, 3, 4
  */
 function themeblvd_user_stylesheets($level)
 {
     themeblvd_deprecated_function(__FUNCTION__, '2.2.0', 'themeblvd_print_styles');
     themeblvd_print_styles($level);
 }
Example #4
0
 /**
  * Display recent tweet.
  *
  * @since 2.0.0
  *
  * @deprecated 2.3.0
  * @param array $args all options for tweet
  * @return string $output HTML output for tweet
  */
 function themeblvd_tweet($args = array())
 {
     themeblvd_deprecated_function(__FUNCTION__, '2.3.0', null, __('Twitter functionality is no longer built into the Theme Blvd framework. Use Theme Blvd "Tweeple" plugin found in the WordPress plugin repository.', 'themeblvd'));
 }