home
/
aioutajg
/
unblockedgames247.com
/
wp-content
/
themes
/
news-portal
/
inc
/
hooks
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
np-custom-hooks.php
3.55 KB
Rename
Delete
np-footer-hooks.php
4.77 KB
Rename
Delete
np-header-hooks.php
10.19 KB
Rename
Delete
np-widget-hooks.php
10.74 KB
Rename
Delete
<?php /** * Custom hooks functions are define about footer section. * * @package Mystery Themes * @subpackage News Portal * @since 1.0.0 */ /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'news_portal_footer_start' ) ) : /** * Footer start * * @since 1.0.0 */ function news_portal_footer_start() { echo '<footer id="colophon" class="site-footer" role="contentinfo">'; } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'news_portal_footer_widget_section' ) ) : /** * Footer widget section * * @since 1.0.0 */ function news_portal_footer_widget_section() { get_sidebar( 'footer' ); } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'news_portal_bottom_footer_start' ) ) : /** * Bottom footer start * * @since 1.0.0 */ function news_portal_bottom_footer_start() { echo '<div class="bottom-footer np-clearfix">'; echo '<div class="mt-container">'; } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'news_portal_footer_site_info_section' ) ) : /** * Bottom footer side info * * @since 1.0.0 */ function news_portal_footer_site_info_section() { ?> <div class="site-info"> <span class="np-copyright-text"> <?php $news_portal_copyright_text = news_portal_get_customizer_option_value( 'news_portal_copyright_text' ); echo esc_html( $news_portal_copyright_text ); ?> </span> <span class="sep"> | </span> <?php $news_portal_author_url = 'https://mysterythemes.com/'; /* translators: 1: Theme name, 2: Theme author. */ printf( esc_html__( 'Theme: %1$s by %2$s.', 'news-portal' ), 'News Portal', '<a href="'. esc_url( $news_portal_author_url ).'" rel="nofollow" target="_blank">Mystery Themes</a>' ); ?> </div><!-- .site-info --> <?php } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'news_portal_footer_menu_section' ) ) : /** * Bottom footer menu * * @since 1.0.0 */ function news_portal_footer_menu_section() { ?> <nav id="footer-navigation" class="footer-navigation" role="navigation"> <?php wp_nav_menu( array( 'theme_location' => 'news_portal_footer_menu', 'menu_id' => 'footer-menu', 'fallback_cb' => false ) ); ?> </nav><!-- #site-navigation --> <?php } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'news_portal_bottom_footer_end' ) ) : /** * Bottom footer end * * @since 1.0.0 */ function news_portal_bottom_footer_end() { echo '</div><!-- .mt-container -->'; echo '</div> <!-- bottom-footer -->'; } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'news_portal_footer_end' ) ) : /** * Footer end * * @since 1.0.0 */ function news_portal_footer_end() { echo '</footer><!-- #colophon -->'; } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ if ( ! function_exists( 'news_portal_go_top' ) ) : /** * Go to Top Icon * * @since 1.5.0 */ function news_portal_go_top() { $np_scroll_top = news_portal_get_customizer_option_value( 'news_portal_scroll_top_option' ); if ( $np_scroll_top == false ) { return; } echo '<div id="np-scrollup" class="animated arrow-hide"><i class="fa fa-chevron-up"></i></div>'; } endif; /*-----------------------------------------------------------------------------------------------------------------------*/ /** * Managed functions for footer hook * * @since 1.0.0 */ add_action( 'news_portal_footer', 'news_portal_footer_start', 5 ); add_action( 'news_portal_footer', 'news_portal_footer_widget_section', 10 ); add_action( 'news_portal_footer', 'news_portal_bottom_footer_start', 15 ); add_action( 'news_portal_footer', 'news_portal_footer_site_info_section', 20 ); add_action( 'news_portal_footer', 'news_portal_footer_menu_section', 25 ); add_action( 'news_portal_footer', 'news_portal_bottom_footer_end', 30 ); add_action( 'news_portal_footer', 'news_portal_footer_end', 35 ); add_action( 'news_portal_footer', 'news_portal_go_top', 40 );
Save