File: D:/HostingSpaces/SBogers60/dev.agrimac.nl/wwwroot/wp-content/themes/Avada/includes/deprecated.php
<?php
/**
* This file contains functions that have been deprecated.
* They will still work, but it we recommend you switch to the new methods instead.
*/
/**
* How comments are displayed
* This is simply a wrapper for the comment_template method in the Avada_Template class
* Kept for backwards-compatibility
*/
function avada_comment( $comment, $args, $depth ) {
Avada()->template->comment_template( $comment, $args, $depth );
}
/**
* Retrieve protected post password form content.
* This is simply a wrapper for the get_the_password_form method in the Avada_Template class
* Kept for backwards-compatibility
*/
function avada_get_the_password_form() {
return Avada()->template->get_the_password_form();
}
/**
* Retrieve the content and apply and read-more modifications needed.
* This is simply a wrapper for the content method in the Avada_Blog class
* Kept for backwards-compatibility
*/
if( ! function_exists( 'tf_content' ) ) :
function tf_content( $limit, $strip_html ) {
Avada()->blog->content( $limit, $strip_html );
}
endif;
/**
* Strip the content and buid the excerpt
* This is simply a wrapper for the avada_get_content_stripped_and_excerpted method in the Avada_Blog class
* Kept for backwards-compatibility
*/
function avada_get_content_stripped_and_excerpted( $excerpt_length, $content ) {
return Avada()->blog->get_content_stripped_and_excerpted( $excerpt_length, $content );
}
if ( ! function_exists('tf_content') ) {
function tf_content( $limit, $strip_html ) {
return Avada()->blog->content( $limit, $strip_html );
}
}
// why do we need this function?
if ( ! function_exists( 'tf_checkIfMenuIsSetByLocation' ) ) {
function tf_checkIfMenuIsSetByLocation( $menu_location = '' ) {
return ( has_nav_menu( $menu_location ) ) ? true : false;
}
}
/**
* This is simply a wrapper for the slider_name method in the Avada_Helper class
* Kept for backwards-compatibility
*/
if ( ! function_exists( 'avada_slider_name' ) ) {
function avada_slider_name( $name ) {
return Avada_Helper::slider_name( $name );
}
}
/**
* This is simply a wrapper for the get_slider_type method in the Avada_Helper class
* Kept for backwards-compatibility
*/
if ( ! function_exists( 'avada_get_slider_type' ) ) {
function avada_get_slider_type( $post_id ) {
return Avada_Helper::get_slider_type( $post_id );
}
}
/**
* Make sure that the wrongly spelled avada_load_more_pots_name filter can still be used
* Kept for backwards-compatibility
*/
add_filter( 'avada_load_more_posts_name', 'avada_handle_deprecated_load_more_posts_filter' );
function avada_handle_deprecated_load_more_posts_filter( $text ) {
$load_more_posts_text = apply_filters( 'avada_load_more_pots_name', '' );
if ( $load_more_posts_text ) {
return $load_more_posts_text;
} else {
return $text;
}
}
/**
* Make sure that the wrongly spelled avada_load_more_pots_name filter can still be used
* Kept for backwards-compatibility
*/
add_filter( 'avada_read_more_name', 'avada_handle_deprecated_blog_read_more_link_filter' );
function avada_handle_deprecated_blog_read_more_link_filter( $text ) {
$read_more_text = apply_filters( 'avada_blog_read_more_link', '' );
if ( $read_more_text ) {
return $read_more_text;
} else {
return $text;
}
}
add_action( 'avada_before_main_container', 'avada_handle_deprecated_before_main_action' );
function avada_handle_deprecated_before_main_action() {
do_action( 'avada_before_main' );
}
// Omit closing PHP tag to avoid "Headers already sent" issues.