X   Сообщение сайта
(Сообщение закроется через 3 секунды)



 

Здравствуйте, гость (

| Вход | Регистрация )

2 страниц V   1 2 >
Открыть тему
Тема закрыта
> Как убрать внешние ссылки из шаблона WordPress
climbing
climbing
Topic Starter сообщение 8.12.2016, 4:32; Ответить: climbing
Сообщение #1


Всем привет.

Недавно поменял шаблон на themify.me/themes/itheme2, появились две внешние ссылки внизу сайта, скорее всего в футере, но я их там не обнаружил.
Прошу помощи специалистов этой темы, вот мой блог http://recordmusik.ru/.

Вот битые ссылки: wordpress.org и themify.me.

</div>
<!-- /body -->

<div id="footerwrap">

<footer id="footer" class="pagewidth clearfix" itemscope="itemscope" itemtype="https://schema.org/WPFooter">


<div class="footer-widgets clearfix">

<div class="col3-1 first">
</div>
<div class="col3-1 ">
</div>
<div class="col3-1 ">
</div>

</div>
<!-- /.footer-widgets -->


<p class="back-top"><a href="#header">&uarr;</a></p>


<div class="footer-text clearfix">
<div class="one">&copy; <a href="http://recordmusik.ru">Chillout</a> 2016</div> <div class="two">Powered by <a href="http://wordpress.org">WordPress</a> &bull; <a href="https://themify.me">Themify WordPress Themes</a></div> </div>
<!-- /footer-text -->

</footer>
<!-- /#footer -->

</div>
<!-- /#footerwrap -->

</div>
<!-- /#pagewrap -->

Вот файлы футера:

<?php
/** Themify Default Variables
@var object */
global $themify; ?>

<?php themify_layout_after(); //hook ?>
</div>
<!-- /body -->

<div id="footerwrap">

<?php themify_footer_before(); //hook ?>
<footer id="footer" class="pagewidth clearfix" itemscope="itemscope" itemtype="https://schema.org/WPFooter">
<?php themify_footer_start(); //hook ?>

<?php get_template_part( 'includes/footer-widgets'); ?>

<p class="back-top"><a href="#header">&uarr;</a></p>

<?php if (function_exists('wp_nav_menu')) {
wp_nav_menu(array('theme_location' => 'footer-nav' , 'fallback_cb' => '' , 'container' => '' , 'menu_id' => 'footer-nav' , 'menu_class' => 'footer-nav'));
} ?>

<div class="footer-text clearfix">
<?php themify_the_footer_text(); ?>
<?php themify_the_footer_text('right'); ?>
</div>
<!-- /footer-text -->

<?php themify_footer_end(); //hook ?>
</footer>
<!-- /#footer -->
<?php themify_footer_after(); //hook ?>

</div>
<!-- /#footerwrap -->

</div>
<!-- /#pagewrap -->

<?php
/**
* Stylesheets and Javascript files are enqueued in theme-functions.php
*/
?>

<?php themify_body_end(); // hook ?>
<!-- wp_footer -->
<?php wp_footer(); ?>

</body>
</html>



footer-widgets.php (includes/footer-widgets.php)



Выберите тему для изменения:  MusicLoud Themify iTheme2 Tresto Twenty Fifteen Twenty Fourteen Twenty Thirteen Twenty Twelve 
 


<?php
/**
* Template to load footer widgets.
*/

$footer_widget_option = ( '' == themify_get('setting-footer_widgets') ) ? 'footerwidget-3col' : themify_get('setting-footer_widgets');

if($footer_widget_option != 'none') { ?>
<?php
$columns = array('footerwidget-4col' => array('col4-1','col4-1','col4-1','col4-1'),
'footerwidget-3col' => array('col3-1','col3-1','col3-1'),
'footerwidget-2col' => array('col4-2','col4-2'),
'footerwidget-1col' => array('') );
$x = 0;
?>

<div class="footer-widgets clearfix">

<?php foreach($columns[$footer_widget_option] as $col): ?>
<?php
$x++;
if( 1 == $x ){
$class = 'first';
} else {
$class = '';
}
?>
<div class="<?php echo $col;?> <?php echo $class; ?>">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer-widget-'.$x) ) ?>
</div>
<?php endforeach; ?>

</div>
<!-- /.footer-widgets -->

<?php } ?>



loop.php (includes/loop.php)



Выберите тему для изменения:  MusicLoud Themify iTheme2 Tresto Twenty Fifteen Twenty Fourteen Twenty Thirteen Twenty Twelve 
 




<?php if(!is_single()) { global $more; $more = 0; } //enable more link ?>
<?php
/** Themify Default Variables
* @var object */
global $themify; ?>

<?php themify_post_before(); //hook ?>
<div id="post-<?php the_id(); ?>" <?php post_class("post clearfix " . $themify->get_categories_as_classes(get_the_id())); ?>>
<?php themify_post_start(); // hook ?>

<?php if ( $themify->hide_image != 'yes' ) : ?>
<?php themify_before_post_image(); // Hook ?>

<?php if ( themify_has_post_video() ) : ?>

<?php echo themify_post_video(); ?>

<?php elseif( $post_image = themify_get_image($themify->auto_featured_image . $themify->image_setting . "w=".$themify->width."&h=".$themify->height ) ) : ?>

<figure class="post-image <?php echo $themify->image_align; ?>">
<?php if( 'yes' == $themify->unlink_image): ?>
<?php echo $post_image; ?>
<?php else: ?>
<a href="<?php echo themify_get_featured_image_link(); ?>"><?php echo $post_image; ?><?php themify_zoom_icon(); ?></a>
<?php endif; // unlink image ?>
</figure>

<?php endif; // video else image ?>

<?php themify_after_post_image(); // Hook ?>
<?php endif; // hide image ?>

<div class="post-content">
<?php if($themify->hide_date != "yes"): ?>
<p class="post-date entry-date updated">
<span class="month"><?php the_time('M') ?></span>
<span class="day"><?php the_time('j') ?></span>
<span class="year"><?php the_time('Y') ?></span>
</p>
<?php endif; ?>

<?php if($themify->hide_title != "yes"): ?>
<?php themify_before_post_title(); // Hook ?>
<?php if(is_single()): ?>
<?php if($themify->unlink_title == "yes"): ?>
<h1 class="post-title entry-title"><?php the_title(); ?></h1>
<?php else: ?>
<h1 class="post-title entry-title"><a href="<?php echo themify_get_featured_image_link(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<?php endif; //unlink post title ?>
<?php else: ?>
<?php if($themify->unlink_title == "yes"): ?>
<h2 class="post-title entry-title"><?php the_title(); ?></h2>
<?php else: ?>
<h2 class="post-title entry-title"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php endif; //unlink post title ?>
<?php themify_after_post_title(); // Hook ?>
<?php endif; ?>

<?php endif; ?>

<div class="entry-content">

<?php if ( 'excerpt' == $themify->display_content && ! is_attachment() ) : ?>
<?php the_excerpt(); ?>

<?php if( themify_check('setting-excerpt_more') ) : ?>
<p><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" class="more-link"><?php echo themify_check('setting-default_more_text')? themify_get('setting-default_more_text') : __('More &rarr;', 'themify') ?></a></p>
<?php endif; ?>
<?php elseif ( 'none' == $themify->display_content && ! is_attachment() ) : ?>
<?php else: ?>
<?php the_content(themify_check('setting-default_more_text')? themify_get('setting-default_more_text') : __('More &rarr;', 'themify')); ?>
<?php endif; //display content ?>

</div>
<!-- /.entry-content -->

<?php if($themify->hide_meta != 'yes'): ?>
<p class="post-meta entry-meta">
<span class="post-author"><?php _e( 'By', 'themify' ); ?> <?php echo themify_get_author_link(); ?> &bull;</span>
<span class="post-category"><?php the_category(', ') ?> &bull;</span>
<?php if( !themify_get('setting-comments_posts') && comments_open() ) : ?>
<span class="post-comment"><?php comments_popup_link('0', '1', '%'); ?></span>
<?php endif; //post comment ?>
<?php the_tags(__(' <span class="post-tag">&bull; Tags: ','themify'), ', ', '</span>'); ?>
</p>
<?php endif; ?>

<?php edit_post_link(__('Edit', 'themify'), '<span class="edit-button">[', ']</span>'); ?>

</div>
<!-- /.post-content -->

<?php themify_post_end(); //hook ?>
</div>
<!--/post -->
<?php themify_post_after(); //hook ?>


Если нужны другие файлы темы, то я предоставлю.
0
Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
BLIK
BLIK
сообщение 8.12.2016, 5:09; Ответить: BLIK
Сообщение #2


climbing,Открой нотепад или тоталкомандер(редактор) и поиском по файлам в папке темы ищи по классу(слову)

class="two"

или без ковычек

two

или по слову

Powered by
или просто
Powered

Поиском найдет, покажет файлы где эти строки(записи). Зайди, сначала попробуй удалить сроку, если поедет шаблон, то просто удали url и надпись
Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
semarg
semarg
сообщение 8.12.2016, 5:57; Ответить: semarg
Сообщение #3


BLIK_mw, н-дя век живи, век учись. Я как-то удалял всю полосу, которая под футером была. Не сообразил снести подпись и ссылку. Правда, шаблон от этого не пострадал. 


--------------------
Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
climbing
climbing
Topic Starter сообщение 8.12.2016, 14:04; Ответить: climbing
Сообщение #4


Спасибо.

Нашел ссылки в файле theme-functions.php, но немного не такие, какие нужно.

<?php


/*
To add custom PHP functions to the theme, create a child theme (https://themify.me/docs/child-theme) and add it to the child theme functions.php file.
They will be added to the theme automatically.
*/

/* Enqueue Stylesheets and Scripts
/***************************************************************************/
add_action( 'wp_enqueue_scripts', 'themify_theme_enqueue_scripts', 11 );
function themify_theme_enqueue_scripts(){

///////////////////
//Enqueue styles
///////////////////

//Themify base styling
wp_enqueue_style( 'theme-style', get_stylesheet_uri(), array(), wp_get_theme()->display('Version'));

//Themify Media Queries CSS
wp_enqueue_style( 'themify-media-queries', THEME_URI . '/media-queries.css');


///////////////////
//Enqueue scripts
///////////////////

//Themify internal scripts
wp_enqueue_script( 'theme-script', THEME_URI . '/js/themify.script.js', array('jquery'), false, true );

//Inject variable values in gallery script
wp_localize_script( 'theme-script', 'themifyScript', array(
'lightbox' => themify_lightbox_vars_init(),
'lightboxContext' => apply_filters('themify_lightbox_context', '#pagewrap'),
));

//WordPress internal script to move the comment box to the right place when replying to a user
if ( is_single() || is_page() ) wp_enqueue_script( 'comment-reply' );

}


/**
* Add viewport tag for responsive layouts
* @package themify
*/
function themify_viewport_tag(){
echo "\n".'<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">'."\n";
}
add_action( 'wp_head', 'themify_viewport_tag' );

/* Custom Write Panels
/***************************************************************************/

///////////////////////////////////////
// Setup Write Panel Options
///////////////////////////////////////

// Post Meta Box Options
$post_meta_box_options = array(
// Layout
array(
"name" => "layout",
"title" => __('Single Layout', 'themify'),
"description" => "",
"type" => "layout",
'show_title' => true,
"meta" => array(
array("value" => "default", "img" => "images/layout-icons/default.png", "selected" => true, 'title' => __('Default', 'themify')),

array('value' => 'sidebar1', 'img' => 'images/layout-icons/sidebar1.png', 'title' => __('Sidebar Right', 'themify')),
array('value' => 'sidebar1 sidebar-left', 'img' => 'images/layout-icons/sidebar1-left.png', 'title' => __('Sidebar Left', 'themify')),
array('value' => 'sidebar-none', 'img' => 'images/layout-icons/sidebar-none.png', 'title' => __('No Sidebar ', 'themify'))
)
),
// Post Image
array(
"name" => "post_image",
"title" => __('Featured Image', 'themify'),
"description" => '',
"type" => "image",
"meta" => array()
),
// Featured Image Size
array(
'name' => 'feature_size',
'title' => __('Image Size', 'themify'),
'description' => __('Image sizes can be set at <a href="options-media.php">Media Settings</a> and <a href="https://wordpress.org/plugins/regenerate-thumbnails/" target="_blank">Regenerated</a>', 'themify'),
'type' => 'featimgdropdown',
'display_callback' => 'themify_is_image_script_disabled'
),
// Image Width
array(
"name" => "image_width",
"title" => __('Image Width', 'themify'),
"description" => "",
"type" => "textbox",
"meta" => array("size"=>"small")
),
// Image Height
array(
"name" => "image_height",
"title" => __('Image Height', 'themify'),
"description" => __('Enter height = 0 to disable vertical cropping with img.php enabled', 'themify'),
"type" => "textbox",
"meta" => array("size"=>"small")
),
// Hide Post Title
array(
"name" => "hide_post_title",
"title" => __('Hide Post Title', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Unlink Post Title
array(
"name" => "unlink_post_title",
"title" => __('Unlink Post Title', 'themify'),
"description" => __('Unlink post title (it will display the post title without link)', 'themify'),
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),

// Hide Post Meta
array(
"name" => "hide_post_meta",
"title" => __('Hide Post Meta', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Hide Post Date
array(
"name" => "hide_post_date",
"title" => __('Hide Post Date', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Hide Post Image
array(
"name" => "hide_post_image",
"title" => __('Hide Featured Image', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Unlink Post Image
array(
"name" => "unlink_post_image",
"title" => __('Unlink Featured Image', 'themify'),
"description" => __('Display the Featured Image without link', 'themify'),
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Video URL
array(
'name' => 'video_url',
'title' => __('Video URL', 'themify'),
'description' => __('Video embed URL such as YouTube or Vimeo video url (<a href="https://themify.me/docs/video-embeds">details</a>).', 'themify'),
'type' => 'textbox',
'meta' => array()
),
// External Link
array(
"name" => "external_link",
"title" => __('External Link', 'themify'),
"description" => __('Link Featured Image and Post Title to external URL', 'themify'),
"type" => "textbox",
"meta" => array()
)
);


// Page Meta Box Options
$page_meta_box_options = array(
// Page Layout
array(
"name" => "page_layout",
"title" => __('Sidebar Option', 'themify'),
"description" => "",
"type" => "layout",
'show_title' => true,
"meta" => array(
array("value" => "default", "img" => "images/layout-icons/default.png", "selected" => true, 'title' => __('Default', 'themify')),

array('value' => 'sidebar1', 'img' => 'images/layout-icons/sidebar1.png', 'title' => __('Sidebar Right', 'themify')),
array('value' => 'sidebar1 sidebar-left', 'img' => 'images/layout-icons/sidebar1-left.png', 'title' => __('Sidebar Left', 'themify')),
array('value' => 'sidebar-none', 'img' => 'images/layout-icons/sidebar-none.png', 'title' => __('No Sidebar ', 'themify'))
)
),
// Content Width
array(
'name'=> 'content_width',
'title' => __('Content Width', 'themify'),
'description' => '',
'type' => 'layout',
'show_title' => true,
'meta' => array(
array(
'value' => 'default_width',
'img' => 'themify/img/default.png',
'selected' => true,
'title' => __( 'Default', 'themify' )
),
array(
'value' => 'full_width',
'img' => 'themify/img/fullwidth.png',
'title' => __( 'Fullwidth', 'themify' )
)
)
),
// Hide page title
array(
"name" => "hide_page_title",
"title" => __('Hide Page Title', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Custom menu for page
array(
'name' => 'custom_menu',
'title' => __( 'Custom Menu', 'themify' ),
'description' => '',
'type' => 'dropdown',
'meta' => themify_get_available_menus(),
),
);

// Query Post Meta Box Options
$query_post_meta_box_options = array(
// Notice
array(
'name' => '_query_posts_notice',
'title' => '',
'description' => '',
'type' => 'separator',
'meta' => array(
'html' => '<div class="themify-info-link">' . sprintf( __( '<a href="%s">Query Posts</a> allows you to query WordPress posts from any category on the page. To use it, select a Query Category.', 'themify' ), 'http://themify.me/docs/query-posts' ) . '</div>'
),
),
// Query Category
array(
"name" => "query_category",
"title" => __('Query Category', 'themify'),
"description" => __('Select a category or enter multiple category IDs (eg. 2,5,6). Enter 0 to display all category.', 'themify'),
"type" => "query_category",
"meta" => array()
),
// Descending or Ascending Order for Posts
array(
'name' => 'order',
'title' => __('Order', 'themify'),
'description' => '',
'type' => 'dropdown',
'meta' => array(
array('name' => __('Descending', 'themify'), 'value' => 'desc', 'selected' => true),
array('name' => __('Ascending', 'themify'), 'value' => 'asc')
)
),
// Criteria to Order By
array(
'name' => 'orderby',
'title' => __('Order By', 'themify'),
'description' => '',
'type' => 'dropdown',
'meta' => array(
array('name' => __('Date', 'themify'), 'value' => 'date', 'selected' => true),
array('name' => __('Random', 'themify'), 'value' => 'rand'),
array('name' => __('Author', 'themify'), 'value' => 'author'),
array('name' => __('Post Title', 'themify'), 'value' => 'title'),
array('name' => __('Comments Number', 'themify'), 'value' => 'comment_count'),
array('name' => __('Modified Date', 'themify'), 'value' => 'modified'),
array('name' => __('Post Slug', 'themify'), 'value' => 'name'),
array('name' => __('Post ID', 'themify'), 'value' => 'ID')
)
),
// Section Categories
array(
"name" => "section_categories",
"title" => __('Section Categories', 'themify'),
"description" => __('Display multiple query categories separately', 'themify'),
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Post Layout
array(
"name" => "layout",
"title" => __('Query Post Layout', 'themify'),
"description" => "",
"type" => "layout",
'show_title' => true,
"meta" => array(
array('value' => 'list-post', 'img' => 'images/layout-icons/list-post.png', 'selected' => true, 'title' => __('List Post', 'themify')),
array('value' => 'grid4', 'img' => 'images/layout-icons/grid4.png', 'title' => __('Grid 4', 'themify')),
array('value' => 'grid3', 'img' => 'images/layout-icons/grid3.png', 'title' => __('Grid 3', 'themify')),
array('value' => 'grid2', 'img' => 'images/layout-icons/grid2.png', 'title' => __('Grid 2', 'themify')),
array('value' => 'list-large-image', 'img' => 'images/layout-icons/list-large-image.png', 'title' => __('List Large Image', 'themify')),
array('value' => 'list-thumb-image', 'img' => 'images/layout-icons/list-thumb-image.png', 'title' => __('List Thumb Image', 'themify')),
array('value' => 'grid2-thumb', 'img' => 'images/layout-icons/grid2-thumb.png', 'title' => __('Grid 2 Thumb', 'themify'))
)
),
// Posts Per Page
array(
"name" => "posts_per_page",
"title" => __('Posts per page', 'themify'),
"description" => "",
"type" => "textbox",
"meta" => array("size" => "small")
),

// Display Content
array(
"name" => "display_content",
"title" => __('Display Content', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array('name' => __('Full Content', 'themify'),"value"=>"content","selected"=>true),
array('name' => __('Excerpt', 'themify'),"value"=>"excerpt"),
array('name' => __('None', 'themify'),"value"=>"none")
)
),
// Featured Image Size
array(
'name' => 'feature_size_page',
'title' => __('Image Size', 'themify'),
'description' => __('Image sizes can be set at <a href="options-media.php">Media Settings</a> and <a href="https://wordpress.org/plugins/regenerate-thumbnails/" target="_blank">Regenerated</a>', 'themify'),
'type' => 'featimgdropdown',
'display_callback' => 'themify_is_image_script_disabled'
),
// Image Width
array(
"name" => "image_width",
"title" => __('Image Width', 'themify'),
"description" => "",
"type" => "textbox",
"meta" => array("size"=>"small")
),
// Image Height
array(
"name" => "image_height",
"title" => __('Image Height', 'themify'),
"description" => __('Enter height = 0 to disable vertical cropping with img.php enabled', 'themify'),
"type" => "textbox",
"meta" => array("size"=>"small")
),
// Hide Title
array(
"name" => "hide_title",
"title" => __('Hide Post Title', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Unlink Post Title
array(
"name" => "unlink_title",
"title" => __('Unlink Post Title', 'themify'),
"description" => __('Unlink post title (it will display the post title without link)', 'themify'),
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Hide Post Date
array(
"name" => "hide_date",
"title" => __('Hide Post Date', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Hide Post Meta
array(
"name" => "hide_meta",
"title" => __('Hide Post Meta', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Hide Post Image
array(
"name" => "hide_image",
"title" => __('Hide Featured Image', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Unlink Post Image
array(
"name" => "unlink_image",
"title" => __('Unlink Featured Image', 'themify'),
"description" => __('Display the Featured Image without link', 'themify'),
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
),
// Page Navigation Visibility
array(
"name" => "hide_navigation",
"title" => __('Hide Page Navigation', 'themify'),
"description" => "",
"type" => "dropdown",
"meta" => array(
array("value" => "default", "name" => "", "selected" => true),

array("value" => "yes", 'name' => __('Yes', 'themify')),
array("value" => "no", 'name' => __('No', 'themify'))
)
)

);

///////////////////////////////////////
// Build Write Panels
///////////////////////////////////////
themify_build_write_panels(array(
array(
"name" => __('Post Options', 'themify'), // Name displayed in box
'id' => 'post-options',
"options" => $post_meta_box_options, // Field options
"pages" => "post" // Pages to show write panel
),
array(
"name" => __('Page Options', 'themify'),
'id' => 'page-options',
"options" => $page_meta_box_options,
"pages" => "page"
),
array(
"name" => __('Query Posts', 'themify'),
'id' => 'query-posts',
"options" => $query_post_meta_box_options,
"pages" => "page"
)
)
);

/* Custom Functions
/***************************************************************************/

///////////////////////////////////////
// Enable WordPress feature image
///////////////////////////////////////
add_theme_support( 'post-thumbnails' );

// Register Custom Menu Function
function themify_register_custom_nav() {
if (function_exists('register_nav_menus')) {
register_nav_menus( array(
'main-nav' => __( 'Main Navigation', 'themify' ),
'footer-nav' => __( 'Footer Navigation', 'themify' ),
) );
}
}

// Register Custom Menu Function - Action
add_action('init', 'themify_register_custom_nav');

// Default Main Nav Function
function themify_default_main_nav() {
echo '<ul id="main-nav" class="main-nav clearfix">';
wp_list_pages('title_li=');
echo '</ul>';
}

// Add home link to menus
function themify_new_nav_menu_items($items) {
$homelink = '<li class="home"><a href="' . home_url( '/' ) . '">' . __('Home', 'themify') . '</a></li>';
$items = $homelink . $items;
return $items;
}
add_filter( 'wp_nav_menu_items', 'themify_new_nav_menu_items' );
add_filter( 'wp_list_pages', 'themify_new_nav_menu_items' );


// Register Sidebars
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' => __('Sidebar', 'themify'),
'id' => 'sidebar-main',
'before_widget' => '<div class="widgetwrap"><div id="%1$s" class="widget %2$s">',
'after_widget' => '</div></div>',
'before_title' => '<h4 class="widgettitle">',
'after_title' => '</h4>',
));
register_sidebar(array(
'name' => __('Social Widget', 'themify'),
'id' => 'social-widget',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<strong class="widgettitle">',
'after_title' => '</strong>',
));
register_sidebar(array(
'name' => __('Header Widget', 'themify'),
'id' => 'header-widget',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<strong class="widgettitle">',
'after_title' => '</strong>',
));
}

// Footer Sidebars
themify_register_grouped_widgets();

if( ! function_exists('themify_theme_comment') ) {
/**
* Custom Theme Comment
* @param object $comment Current comment.
* @param array $args Parameters for comment reply link.
* @param int $depth Maximum comment nesting depth.
* @since 1.0.0
*/
function themify_theme_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment;
?>
<li id="comment-<?php comment_ID() ?>">
<p class="comment-author">
<?php echo get_avatar($comment,$size='36'); ?>
<?php printf('<cite>%s</cite>', get_comment_author_link()) ?><br />
<small class="comment-time"><strong><?php comment_date( apply_filters( 'themify_comment_date', '' ) ); ?></strong> @ <?php comment_time( apply_filters( 'themify_comment_time', '' ) ); ?><?php edit_comment_link( __('Edit', 'themify'),' [',']') ?></small>
</p>
<div class="commententry">
<?php if ($comment->comment_approved == '0') : ?>
<p><em><?php _e('Your comment is awaiting moderation.', 'themify') ?></em></p>
<?php endif; ?>

<?php comment_text() ?>
</div>
<p class="reply"><?php comment_reply_link(array_merge( $args, array('add_below' => 'comment', 'reply_text' => __('Reply', 'themify'), 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?></p>
<?php
}
}



Прикрепленные файлы
Прикрепленный файл  theme-functions.php ( 20,83 килобайт ) Кол-во скачиваний: 57
 
Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
climbing
climbing
Topic Starter сообщение 11.12.2016, 16:30; Ответить: climbing
Сообщение #5


(BLIK) *
Powered by



Здравствуйте. Поиском тотал коммандер ничего не нашел. Искомые файлы не найдены.

Где еще можно посмотреть, или как их найти?
Эскизы прикрепленных изображений
Прикрепленное изображение
 
Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
BLIK
BLIK
сообщение 11.12.2016, 18:21; Ответить: BLIK
Сообщение #6


climbing, Пробуйте по одному слову

Powered

или по классу

two

и

wordpress


themify


https

Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
ShowPrint
ShowPrint
сообщение 11.12.2016, 18:29; Ответить: ShowPrint
Сообщение #7


(climbing @ 11.12.2016, 19:30) *
Поиском тотал коммандер
Судя по скрину - ищите файлы с именем, вполне естественно их нет.

Надо искать все файлы "с текстом"
Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
climbing
climbing
Topic Starter сообщение 11.12.2016, 22:27; Ответить: climbing
Сообщение #8


ShowPrint,
Здравствуйте. Искал с текстом и без текста, как только не пробовал, их нет и все. 
Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
climbing
climbing
Topic Starter сообщение 11.12.2016, 22:52; Ответить: climbing
Сообщение #9


(BLIK) *

Подскажите как правильно искать по тотал коммандеру и по нотпаду?
Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
BLIK
BLIK
сообщение 11.12.2016, 23:15; Ответить: BLIK
Сообщение #10


climbing, же обсуждалось не один раз
http://www.masterwebs.ru/topic/25698-kak-u...-ssilki-futere/
и
http://www.masterwebs.ru/topic/25163-tema-wp/
Вернуться в начало страницы
 
Ответить с цитированием данного сообщения
2 страниц V   1 2 >
Открыть тему
Тема закрыта
1 чел. читают эту тему (гостей: 1, скрытых пользователей: 0)
Пользователей: 0


Свернуть

> Похожие темы

  Тема Ответов Автор Просмотров Последний ответ
Горячая тема (нет новых ответов) Размещу ваши ссылки на форумах.
94 marybraun 86598 Вчера, 20:16
автор: marybraun
Открытая тема (нет новых ответов) Как вы бросили работу и перешли на заработок с сайтов?
7 uahomka 1567 17.3.2024, 14:54
автор: uahomka
Открытая тема (нет новых ответов) Арбитражники, как ведете учет расходов и доходов?
10 Boymaster 1469 17.3.2024, 3:22
автор: malamut
Открытая тема (нет новых ответов) Тема имеет прикрепленные файлыПродам базу сайтов Wordpress в 16 миллионов доменов! Свежая сборка.
17 Boymaster 9282 17.3.2024, 2:53
автор: Boymaster
Открытая тема (нет новых ответов) Как отозвать банковский платеж фрилансеру?
26 metvekot 3656 15.3.2024, 10:42
автор: Skyworker


 



RSS Текстовая версия Сейчас: 19.3.2024, 15:44
Дизайн