fermel2
Respostas no Fórum
Visualizando 2 respostas - 1 até 2 (de um total de 2)
-
Fórum: Temas
Em resposta a: Problema ao transformar layout php para WordPressJá corrigi os erros mas não resolveu 🙁
vi que o script ta executando a ação nos elementos do html mas não aparecem os submenus….
Fórum: Ajustando o WordPress
Em resposta a: Resultado de pesquisa desconfigura paginaestou usando o padrão do tema
no menu de widgets tinha um widtget de pesquisar e coloquei no site
esta ai o codigo do arquivo search.php
<?php /** * * search.php * * The search results template. Used when a search is performed. * */ get_header(); ?> <div class="mdlayout-wrapper"> <div class="mdcontent-layout"> <div class="mdcontent-layout-row"> <div class="mdlayout-cell mdsidebar1"> <?php get_sidebar('default'); ?> <div class="cleared"></div> </div> <div class="mdlayout-cell mdcontent"> <?php get_sidebar('top'); ?> <?php if(have_posts()) { theme_post_wrapper( array('content' => '<h4 class="box-title">' . sprintf( __( 'Search Results for: %s', THEME_NS ), '<span class="search-query-string">' . get_search_query() . '</span>' ) . '</h4>' ) ); /* Display navigation to next/previous pages when applicable */ if (theme_get_option('theme_top_posts_navigation')) { theme_page_navigation(); } /* Start the Loop */ while (have_posts()) { the_post(); get_template_part('content', get_post_format()); } /* Display navigation to next/previous pages when applicable */ if (theme_get_option('theme_bottom_posts_navigation')) { theme_page_navigation(); } } else { theme_404_content( array( 'error_title' => __('Nothing Found', THEME_NS), 'error_message' => __('Sorry, but nothing matched your search criteria. Please try again with some different keywords.', THEME_NS) ) ); } ?> <?php get_sidebar('bottom'); ?> <div class="cleared"></div> </div> <div class="mdlayout-cell mdsidebar2"> <?php get_sidebar('secondary'); ?> <div class="cleared"></div> </div> </div> </div> </div> <div class="cleared"></div> <?php get_footer(); ?>
Visualizando 2 respostas - 1 até 2 (de um total de 2)